用python捕获全屏的最快方法是什么



我使用了PIL中的ImageGrab,但这太慢了,无法用于项目。

有没有不使用PIL的替代方案?

捕获图像相当于捕获一帧视频。您可以使用OpenCV的VideoCapture方法来完成此操作。

import cv2
cap = cv2.VideoCapture(0) # video capture source camera (Here webcam of laptop) 
ret,frame = cap.read() # return a single frame in variable `frame`
while(True):
cv2.imshow('img',frame) #display the captured image
if cv2.waitKey(1) & 0xFF == ord('y'): #save on pressing 'y' 
cv2.imwrite('images/test.png',frame)
cv2.destroyAllWindows()
break
cap.release()

有关详细信息,请查看OpenCV教程。

相关内容

  • 没有找到相关文章

最新更新