admin管理员组

文章数量:1547527

I'm trying to access a basic webcam (Logitech c270) through opencv python VideoCapture. Unfortunately though, every time I run the program the display screen comes up black. I know the camera works because I can view the video through their software. I am well aware of making sure to put in the waitkey(x) so that's not the issue. I also have this code just in case the index changes:

for i in range(4):

capture = cv2.VideoCapture(i)

if not capture:

print "UNABLE TO CAPTURE CAMERA"

else:

print "taken camera from index: ", i

break

But it's returned a 0 index each time. And it's the issue is not that it's having trouble finding it either because I have a part of code to tell me if the camera was able to retrieve a frame, so maybe the problem is with read().

Finally, maybe the issue is that my

本文标签: 黑屏摄像头网络PythonOpencv