SystemError:<class'cv2.VideoCapture'>返回的结果带有错误集

时间:2019-11-19 05:51:51

标签: opencv python-3.6

自早上起,我收到此错误。直到昨天,脚本运行良好。 我已经安装了opencv,然后重新安装了它。这也解决了这个问题。

import cv2
cap = cv2.VideoCapture(0)
while True:
    ret,frame=cap.read()
    gray=cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
    cv2.imshow('WindowName',gray)
    if cv2.waitKey(1)&0xFF==ord('q'):
        break
cap.release()
cv2.destroyAllWindows()

该脚本在我朋友的系统中运行正常。

0 个答案:

没有答案