So I have this Image ,this Template image and this code:
Image:
Template:
code:
list(pyautogui.locateAllOnScreen(r'C:\Desktop\chromatic.png', grayscale = True, confidence = 0.9))
The picture is in grayscale for faster times but even if I put the original it doesn't work.
So the problem is that it finds 6-7 occurrences instead of 4, so the template matches the same image more than once. I tried switching confidence etc but nothing works. What can I do?
I've faced with the same problem. The problem is that locateAllOnScreen finds the same image several times shifted by 1-2 pixels. I solved the problem by filtering the found images (distance between images should be more than 10 px: (x1-x2)2 + (y1-y2)2 > distance2).