如果我想查找图像,即使不是在那一刻,而是何时找到它,我可以使用什么代码? 我的代码是:
import pyautogui as auto
import time
import pyautogui
def Saludar (seconds,schedule) :
while (1>0) and (schedule == True) :
time.sleep(seconds)
x, y = auto.locateCenterOnScreen('linea.png', grayscale=True)
auto.moveTo(x,y)
pyautogui.click()
print("YA")
if __name__== "__main__":
Saludar(2,True)