所以,我有这个可以工作的脚本,它打印出所有具有 (102,102,102) 的 rgb 值的像素,但我不知道我现在如何能够获得该像素位置并单击它.. 有什么建议吗?
编辑:像素位置是指像素x,y坐标
import pyautogui
import time
from PIL import Image
import mss
import mss.tools
import cv2
import numpy as np
from PIL import ImageGrab
import colorsys
time.sleep(3)
def shootfunc(xc, yc):
pyautogui.click(xc, yc)
gameregion = [71, 378, 328, 530]
foundpxl = 0
xx = 0
while xx <= 300:
with mss.mss() as sct:
region = {'top': 0, 'left': 0, 'width': 1920, 'height': 1080}
imgg = sct.grab(region)
pxls = imgg.pixels
for pxl in pxls:
for pxll in pxl:
if pxll == (102, 102, 102) or pxl == "(255, 255, 255)" or pxl == [255, 255, 255]:
foundpxl = pxll
print(foundpxl)
xx = xx + 1
time.sleep(.1)