如何使用OpenCV 3& amp ;;从实时视频中捕获图像?蟒蛇

时间:2017-02-19 16:43:29

标签: python image opencv video

我想从实时视频中捕获图像,然后将拍摄的图像与库中已存在的图像进行比较。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您可以使用以下方式捕捉实时视频:

cap = cv.VideoCapture(0)

然后,你可以通过

获得每一帧(图像)
while(True)
   ret, frame = cap.read()
   # Perform your comparison here, 
   # between (frame) and your image
   if cv2.waitKey(1) & 0xFF == ord('q'):
      break
cap.release()
cv2.destroyAllWindows()