Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我成功处理了一段视频并让算法检测到人脸,但我正在尝试实时检测人脸,从屏幕上捕获图像(例如在玩游戏时等)。这是我的代码的一部分用于处理捕获的视频:
capture = cv2.VideoCapture('source_video.avi')
如何更改此设置以实时从屏幕捕获图像?如果可能的话,请给我一些代码示例。
不要为此使用openCV。更好的使用
from PIL import ImageGrab ImageGrab.grab().save("screen_capture.jpg", "JPEG")