我正在尝试在此页面上运行第一个代码,“从相机捕获视频”:
http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html
在cv2.videoCapture(0)上,我用vídeo名称替换了0 - 它保存在.ipynb文件的同一目录中。它返回以下错误:
error Traceback (most recent call last)
<ipython-input-1-ce45564bb1af> in <module>()
9
10 # Our operations on the frame come here
---> 11 gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
12
13 # Display the resulting frame
error: C:\conda\conda-bld\work\opencv-3.1.0\modules\imgproc\src\color.cpp:7456: error: (-215) scn == 3 || scn == 4 in function cv::ipp_cvtColor
我该如何解决?我正在使用windows10。