-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A way to get x and y coordinates of each match that is found in ImageSearchCount? #11
Comments
There isn't for now, but you can easily edit the imagesearch_count function to do it (save the coordinates in a list instead of increasing the counter). A new function would be welcome. |
Yea typically you would just build your own function and pipe out the x,y's. Do you want this functionality within imagesearchcount? Seems like it's overkill if for most the function isn't meant to do it that's just wasted overhead in the background. I'd say a new function ImageSearchCountLoc for returning the values as well as the count. I'm down to craft it up. |
@eagleEggs awesome ! I think this deserves it's own function as well. And I am down for the name |
Hi, I made this:
It returns list of each coordinates found in a list. |
@Mikami382 Thank you ! Its working for me ! edit : this file "......./Python38/site-packages/python_imagesearch/imagesearch.py" like this :
And in your code :
|
Is there a way to do this?
The text was updated successfully, but these errors were encountered: