gpt4 book ai didi

python - 设置 ImageGrab 从中获取像素颜色的位置

转载 作者:行者123 更新时间:2023-12-01 08:24:37 26 4
gpt4 key购买 nike

我正在使用 PIL 中的 ImageGrab 来获取屏幕上特定像素的 RGB 值。我无法理解在哪里设置 x 和 y 坐标以获取像素。这是到目前为止的模式代码:

from PIL import ImageGrab
import threading

def getcol():
global pxcolor
threading.Timer(0.5, getcol).start()
pixel=ImageGrab.grab().load()
for y in range(0,1,1):
for x in range(0,1,1):
pxcolor=pixel[x,y]
print(pxcolor)

getcol()

我尝试更改 xyrange 值,但这改变了打印的方式。我是一个初学者,对于这个愚蠢的问题我感到很抱歉,但我已经研究了很长时间并且无法弄清楚。目前它只是从屏幕左上角获取像素。我想捕获 1920x1080 屏幕上的单个中间像素。

谢谢。

最佳答案

未经测试,但是像这样指定 bounding box仅 1x1 像素:

pixel=ImageGrab.grab((960,540,961,541)) 

如果你检查它,它会给你这个:

<PIL.Image.Image image mode=RGBA size=1x1 at 0x120668748>

关于python - 设置 ImageGrab 从中获取像素颜色的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54352335/

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