-2
我想捕獲實時視頻中的圖像,然後將拍攝的圖像與庫中已存在的圖像進行比較。誰能幫忙?如何使用OpenCV 3和Python捕捉實時視頻中的圖像
我想捕獲實時視頻中的圖像,然後將拍攝的圖像與庫中已存在的圖像進行比較。誰能幫忙?如何使用OpenCV 3和Python捕捉實時視頻中的圖像
您可以通過捕獲實時視頻:
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()
每一個幀(圖片)