OpenCv报错无法通过视频采集打开相机

新手上路,请多包涵

我正在通过 opencv 使用我的摄像头,然后在重新启动后突然运行我的代码,它显示以下错误:

 [ WARN:0] global /io/opencv/modules/videoio/src/cap_v4l.cpp (802) open VIDEOIO ERROR: V4L: can't open camera by index 0
Traceback (most recent call last):
  File "test.py", line 20, in <module>
    retval, buffer_img = cv2.imencode('.jpg', frame)
cv2.error: OpenCV(4.1.2) /io/opencv/modules/imgcodecs/src/loadsave.cpp:877: error: (-215:Assertion failed) !image.empty() in function 'imencode'

 cap = cv2.VideoCapture(0)  # here it throws an error

import json
while(True):
    # Capture frame-by-frame
    ret, frame = cap.read()

    retval, buffer_img = cv2.imencode('.jpg', frame)

    resdata = base64.b64encode(buffer_img)

    resdata = "data:image/png;base64,"+ str(resdata.decode("utf-8"))
    PARAMS = {'image': resdata}

    # Our operations on the frame come here
    #gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    # Display the resulting frame
    cv2.imshow('frame',frame)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

我也试过 cap = cv2.VideoCapture(1) 但它显示找不到相机

我该如何解决这个问题?

原文由 Nabeel Ayub 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 2.1k
1 个回答

我得到了同样的错误。尝试将 0 更改为 -1

 cap = cv2.VideoCapture(-1)

这解决了这个问题。

原文由 abey 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题