gpt4 book ai didi

sikuli如何同时查看多张图片

转载 作者:行者123 更新时间:2023-12-03 21:30:28 25 4
gpt4 key购买 nike

西库里

我需要检查一个特定区域是否存在我想点击的图像,图像会随机显示,我编写代码来检查,但是检查该区域需要 10 多秒,无论如何我可以缩短时间。

Settings.MinSimilarity = 0.95
Reg = Region(582,404,214,187)
img = capture(Reg)
search = True
Settings.MoveMouseDelay = 0
while search :
if Reg.exists("12.png") or Reg.exists("13.png") or Reg.exists("14.png")or Reg.exists("15.png")or Reg.exists("28.png"):
click(Reg.getLastMatch())
search = False

最佳答案

您可以将 0 参数添加到 exists() 调用。

所以代替

if  Reg.exists("12.png") or Reg.exists("13.png") or Reg.exists("14.png")or Reg.exists("15.png")or Reg.exists("28.png"):

你会:

if  Reg.exists("12.png",0) or Reg.exists("13.png",0) or Reg.exists("14.png",0)or Reg.exists("15.png",0)or Reg.exists("28.png",0):

根据 this , 零参数意味着

0 as the second parameter to exists forces, that only one search is executed and the result returned immediately. It does not wait the standard 3 seconds, so it is very responsive.

区域越小,速度越快。

关于sikuli如何同时查看多张图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43583322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com