我有同样的问题,在 dmesg 中也有同样的错误日志。我认为需要将捕获大小(即 CV_CAP_PROP_FRAME_WIDTH 和 CV_CAP_PROP_FRAME_WIDTH)设置为适合您相机的值。
经过一些实验,这对我使用了罗技高清网络摄像头 C525 的 BeagleBone Black:
#! /usr/bin/env python
import cv2
import sys
vc = cv2.VideoCapture(0)
vc.set(cv2.cv.CV_CAP_PROP_FRAME_WIDTH,1280)
vc.set(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT,720)
if not vc.isOpened():
sys.stderr.write('could not connect to camera! \n')
sys.exit(1)
for count in range(0,5):
success,frame = vc.read()
if not success:
sys.stderr.write('could not read image from cam \n')
sys.exit(1)
cv2.imwrite('capture_%02d.png' % count,frame)
vc.release()
vc = None
我不确定是否需要,但我还预先配置了相机:
root@beaglebone:~# v4l2-ctl --set-fmt-video=width=1280,height=720,pixelformat=1