I\'m trying to use python to determine if one (small) image is within another (large) image.
Any suggestions before I take myself completely down the wrong path?>
pyautogui module does the job using pyautogui.locate(small_image, large_image) method which returns 4-integer tuple: (left, top, width, height).
pyautogui
pyautogui.locate(small_image, large_image)
(left, top, width, height)