The openCV code below grabs simultaneous images from two cameras. It works fine in windows, with the cameras both attached to one usb 2.0 hub. When I try the same code in linux, it only has enough bandwidth for one camera at a time. I've also tried viewing the two streams at once with guvcview, same issue. What I need is some way to force the webcams to work together, possibly by setting the amount of bandwidth the driver requests.

capture = cv.CaptureFromCAM(0)
capture2 = cv.CaptureFromCAM(1)

while True: 
    frame = cv.QueryFrame(capture)
    frame2 = cv.QueryFrame(capture2)
    cv.ShowImage("w1", frame)
    cv.ShowImage("w2", frame2)    
    if cv.WaitKey(10) != -1:
        break
link|improve this question

67% accept rate
Is this a Windows or Linux problem? You said Linux in each instance in the question statement. I think you've made typos. – Zéychin Jul 14 '11 at 2:22
doh! Yeah, the title has it right. Thanks for pointing that out. – shekel Jul 14 '11 at 2:58
feedback

2 Answers

The issue might be here that the cameras run some sort of video compression in their windows drivers, while they might run uncompressed in Linux - at a higher data rate.

If that is the case, then you may need to put them on different USB busses to make them work both at a time in Linux. This could require you to add a PCI or PCIe USB card to your system - many motherboards do only implement one USB2.0 high speed bus.

link|improve this answer
This is for a robotics application where I also have access to an old laptop. It's running windows server 2003 now, but if I put XP on it, should it work with the two cameras? According to a program called lsusb, it also has a 2.0 hub. – shekel Jul 14 '11 at 7:04
feedback

Can you configure the webcams to use a lower resolution or frame rate and thus less bandwidth?

link|improve this answer
I've tried to do so from within opencv(the function to do so is broken), and to view both cameras simultaneously using other applications at a lower resolution/framerate. Neither works. Because of this, I think it might be a driver level problem. – shekel Jul 14 '11 at 6:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.