Recently, I came across an example dealing with the problem of finding a specific image on a computer screen for QA purposes (for instance, the locateOnScreen method from pyautogui). However, in many cases, this is done synchronously, which has been reported to cause performance issues (such as command delays) in actual use.
One of the most promising options for finding a specific image within the original image is called Template Matching.
This should be implemented to perform asynchronously and handle it as an event.
Summary
Recently, I came across an example dealing with the problem of finding a specific image on a computer screen for QA purposes (for instance, the
locateOnScreen
method from pyautogui). However, in many cases, this is done synchronously, which has been reported to cause performance issues (such as command delays) in actual use.One of the most promising options for finding a specific image within the original image is called Template Matching.
This should be implemented to perform asynchronously and handle it as an event.
Related links