提问人:Coding_Guy 提问时间:10/25/2023 更新时间:10/25/2023 访问量:40
Python 在 MacOS 屏幕上检测颜色
Python detecting color on MacOS screen
问:
我正在尝试制作一个可以用作反应时间机器人的 python 脚本。就像我想尽快在屏幕上去除像素的颜色,然后单击它。但是由于我在 Mac 上,所以我不能使用 Windows 软件包。我试图做这样的事情:
import os
pixel = (0, 0) #the coordinates of the pixel I am observing
green = (0, 0, 0) #the rgb values of green
while True:
if os.get_pixel_rgb_color(pixel) == green:
os.click(pixel)
但是由于像 pyautogui 这样的软件包(据我所知)需要截取屏幕截图才能获得 rgb 值。但是这些东西需要更多的时间,而且由于我正在尝试制作一个反应时间机器人,所以它太慢了。
答: 暂无答案
评论
ffmpeg
ffmpeg
ffmpeg
ffmpeg
ffmpeg