cv2.VideoCapture无效

时间:2018-05-24 19:30:13

标签: python python-3.x opencv

我正在尝试openCV背景减法代码,但我不断收到此错误消息:

unable to stop the stream: invalid argument

我现在注释掉了所有其他代码,我留下的唯一代码是:

import cv2

cap = cv2.VideoCapture('test.avi')

但是当我运行它时,错误信息保持不变。

我使用的是Ubuntu系统。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

这似乎是一个test.avi文件相关的问题...你能检查一下我刚刚测试过的这个文件吗? http://www.engr.colostate.edu/me/facil/dynamics/files/drop.avi

import cv2

cap = cv2.VideoCapture('drop.avi')

代码没问题,应该可行。您可以检查您的依赖项,最后一次尝试使用official example code确保正确安装opencv:

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

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()

此代码将显示您的网络摄像头。如果它有效,我非常确定您的问题与您的文件有关。