我目前正在尝试在Python OpenCV上显示视频。但是,虽然下面的代码没有错误返回,但我仍然没有看到所播放的视频。
环境是:Anaconda3(Python 2.7.13),Windows 7,OpenCV 3.2.0
我尝试的是:
import numpy as np
import cv2
cap = cv2.VideoCapture('Traffic.mpg')
while(cap.isOpened()):
ret, frame = cap.read()
gray = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
感谢您的建议。
答案 0 :(得分:1)
您的opencv_ffmpeg.dll
中是否有opencv_ffmpeg_64.dll
或C\Python
。您需要拥有这些dlls
才能播放视频。有关详细信息,请查看此link。
答案 1 :(得分:0)
回答该问题的示例代码片段如下所示:
import cv2
capture = cv2.VideoCapture(0)
while True:
ret, frame = capture.read()
cv2.imshow('Video', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
video_capture.release()
cv2.destroyAllWindows()