OpenCV Python: cv2.VideoCapture can only find 2 of 3 cameras, Windows Camera app finds all OpenCV Python: cv2.VideoCapture can only find 2 of 3 cameras, Windows Camera app finds all python python

OpenCV Python: cv2.VideoCapture can only find 2 of 3 cameras, Windows Camera app finds all


Do your webcams support USB3? Based on my practical experience with webcams and OpenCV, most common cameras only transmit on the USB2 standard, at 480 MBit/s. The exact details of how many cameras you can support on one USB channel depend on the resolution, framerate, and video compression technology. In my experience, with 1080p color video at 30 fps and H.264 encoding, only one camera stream fit onto a single USB controller.

An easy test to see if you are bandwidth limited would be to modify your program to explicitly close each stream after it is tested (cap.release()), so that your test program only opens one camera at a time, like the Windows camera app. If that works, then you may very well be looking at a bandwidth limitation.

When debugging video capture issues on Windows, it can also be useful to open the camera streams with VLC. VLC can enumerate all of the cameras available from DirectShow, which is the same API that OpenCV's VideoCapture uses by default. You can also start multiple VLC instances to attempt simultaneous streams.

If you click on "Advanced Options" and then check "Device Properties," VLC will show which settings (exposure, focus, etc...) can be tweaked through DirectShow. These settings are usually accessible in OpenCV through VideoCapture.set().


having two video input devices does not automatically mean that their IDs are 0 and 10. Try to access the all cameras by increasing to about 500 or more instead of 10

cams_test = 500for i in range(0, cams_test):    cap = cv2.VideoCapture(i)    test, frame = cap.read()    if test:        print("i : "+str(i)+" /// result: "+str(test))

I think you are only testing


1) about cv2... Well, is there any other instances/alternatives? maybe that third cam is binded to other instance instead of cv2 ?

2) did you try to start loop (range) from -1 instead of 0?

3) If none of the method helps you, I advise to go to Device Manager and temporarily DISABLE the individual webcam and then run your script again and see what changes. After that ENABLE webcam and see what changed. ( in worst scenario, instead of ENABLE/DISABLE, you might insall/resintall the particular webcam and then windows might resolve them correctly).