在一种情况下完成验证之前,如何保持在python中。所以这是场景。我正在检查bbox的颜色,一旦矩形的像素结果中出现了特定的颜色代码,它将移至下一个阶段。这是示例代码。
img = ImageGrab.grab(bbox=(334,425,380,443))
img_co = str(img.getcolors())
if '255' in img_co:
pass
else:
#hold till unlimited time till the if condition satisfies then pass to the next phase
pass
time.sleep()无法正常工作,因为如果数据库速度太慢或互联网获取我的值的速度变慢,我们就无法预测估计时间。
好的,所以我虽然不是asyncio的另一件事是标签提示了这是怎么回事。
label1: colorcheck
a=datetime.datetime.now()
img = ImageGrab.grab(bbox=(724,120,736,131))
#img.show()
img_co = str(img.getcolors())
print(img_co)
goto label1
或者我们是否可以通过函数来做到这一点?