我有一些avi文件,我正在尝试逐帧读取。我使用了opencv3.1.0来读取帧:
import cv2
cap = cv2.VideoCapture(file_path)
然后我只是读了一下帽子的框架。这在一些视频上效果很好。我最近又拍了几段视频,但同样的代码是空的。我检查过:
cap.isOpened() # return False
而且视频似乎没有正确打开。就我而言,唯一改变的是新视频是彩色的,而旧视频不是。我不知道这会如何改变代码中的任何内容。我检查了视频在其他软件(imageJ)中的打开情况,所以我相信视频本身不是问题所在。
你知道为什么新视频没有正确打开吗?我找不到任何关于如何调试此问题的信息。如有任何建议,我们将不胜感激。
我切换到imageio而不是opencv,一切都很好
我也犯了同样的错误。
解决方案。
- 使用Pycharm
- 安装Anaconda3
- conda install-c conda forge opencv(以管理员身份打开CMD)
- 在PyCharm中选择Anaconda3(文件->设置->项目解释器)
并测试
def VideoPlayer():
cap = cv2.VideoCapture("D:OpenCv4ProgrammersdatasTomAndJerry.mp4")
while (True):
# Capture frame-by-frame
ret, frame = cap.read()
# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Display the resulting frame
cv2.imshow('frame', gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
经过大量时间的测试&在这方面失败。。。需要2件事
必须安装ffmpeg,您可以检查它是否已安装,并使用以下命令与opencv一起工作:
print(cv2.getBuildInformation())
显然,有一个环境变量OPENCV_FFMPEG_CAPTURE_OPTIONS在某些情况下可能不会设置。。。。所以要确保它是
import os
os.environ["OPENCV_FFMPEG_CAPTURE_OPTIONS"] = "rtsp_transport;udp"
测试并使用安卓系统的RSTP,使用miv.rtscamera和Raspberry Pi 的cvlc
我使用的是Windows,Python 2.7.4。我尝试安装Opencv,但没有成功,我还安装了ffmpeg。然后我尝试了这个:
pip install opencv-python
这对我很有效。
尝试安装ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg
问题是您从未真正打开cap
。我没有从视频文件中做到这一点,但使用相机时,它看起来像这样:
import cv2
#instantiate videocapture object (0 is for the default webcam)
cap = cv2.VideoCapture(0)
while(True):
#read frame from video file
ret, frame = cap.read()
cv2.imshow('frame',frame)
#if esc key pressed or no more video input
if cv2.waitKey(1) & 0xFF == 27 or ret==False:
break
# When everything done, release the capture
cv2.destroyAllWindows()
cap.release()