views:

70

answers:

3

I'm looking into connecting multiple low resolution USB webcams to a single computer. What implications might this have on performance? How does, for example, four 320x240 cameras fare against a single 640x480 camera? I'm not well versed in the architecture of the USB interface, what are the performance caveats? By performance I mean how would it affect the time to read the image data from multiple cameras compared to a single one.

+1  A: 

Each webcam is connected to a different USB port? If so, its good.

Even if its just 1 port with 4 connected webcams. I dont think 4 320x240 will have any problem either. USB 2.0 = 320Mbps. Streaming a 320x240 video wouldn't be over 1mbps. Worst case scenario, putting a 320x240 at 2mbps + 1mb of other data. That would be 12mbps bandwidth between your usb port and the device.

So from the above, the 1 USB port can handle 4 webcams connected by a splitter just as fast as 1 640x480 webcam.,

Processing these images depends on your computer speed and how you write your algorithm.

Shawn Mclean
Thanks. Yeah I was just wondering about reading/transferring the images, not processing them.
Martin
But the USB comms are handled by the CPU not in hardware like firewire. Does the driver interupt for each new pixel/line/frame, how long does it take?It's not all about bandwidth.
Martin Beckett
A: 

The maximum data rate of USB is way higher than what you will actually get. Webcams will probably use isochronous transfer, which under USB 2 can only get about 40% (if I recall correctly) of the bus time, and this also has a good bit of overhead. I don't know for sure, but I suspect that this is why usb webcam resolutions and data rates seem to have hit a ceiling several years ago. They may start to increase again with the use of USB 3. I'd suggest that you attach each of your cameras to it's own USB 2 port, as the 40% is shared among all isochronous connections. One of those connections sharing bandwidth with a keyboard or even a usb mass storage device should be ok, because they would only use parts of the remainder of the bandwidth.

nategoose
A: 

Martin,

I see that you are working on USB cameras, reflective tape, and position tracking. I am working on a similar project and would like to talk to you. If you're interested, please email me at myfirst.mylast over at that Google mail place.

And feel free to delete this answer (or I will) once you email me.

-Aric

Aric TenEyck