python之pyautogui框架下图片识别失败问题
这个时候,需要pip install opencv-python。如果只是pip pyautogui的情况下,可能会出现以下异常。
·
import pyautogui
import time
time.sleep(2)
#获取指定元素的坐标
target_pos = pyautogui.locateOnScreen('img/help_btn.png')
target_center_pos = pyautogui.center(target_pos)
#移动鼠标
pyautogui.moveTo(target_center_pos,duration = 1 )
pyautogui.leftClick()
如果只是pip pyautogui的情况下,可能会出现以下异常
imageNotFoundException
这个时候,需要pip install opencv-python
就可以成功识别
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献3条内容
所有评论(0)