我目前正在将 PyAutoGUI 用于在 aneedleImage
上搜索 a 的 locate 函数haystackImage
。文档提供的示例包含图像的路径。但是,我有一个函数可以将一系列 与needleImage
单个进行比较haystackImages
,并且在需要检查的次数内读取相同的图像文件效率非常低。
有没有办法避免heystackImage
每次都阅读?如果没有,是否有任何替代 pyautogui/pyscreez 使用 bufferedImage 的定位功能?
...
checks = {
"recieve.png": 'recieve',
"next.png": 'next',
"start.png": 'start',
"black.png": 'loading',
"loading.png": 'loading',
"gear.png": 'home',
"factory.png": 'factory',
"bathtub.png": 'bathtub',
"refit.png": 'refit',
"supply.png": 'supply',
"dock.png": 'dock',
# SPE
"spepage.png": 'spe',
"expeditionpage.png": 'expedition',
"sortiepage.png": 'sortie',
"practice.png": 'practice',
"practiceinfo.png": 'practice',
"oquest.png": 'quest',
"quest.png": 'quest'
}
for key in checks:
if (detect(key, cache=True)):
return checks[key]
def detect(imgDir, confidence=0.85, cache=False):
if (pyautogui.locate(os.path.join('images', imgDir), 'images\\capture.jpeg', confidence=confidence)) is not None:
return True
else:
return False