Anyone has any luck working with two cameras with JMyron or Video library?
I know you can use video library to call two cameras. However I have a win7 here with two cameras showing up with the exact same name, and as far as I know the Capture constructor only read names.
As far as I know JMyron does not support multiple cameras. I tried to write the code like this:
import JMyron.*;
JMyron m;
JMyron m2;
void setup()
{
size(600,800);
m = new JMyron();
m.start(600,400);
m2 = new JMyron();
m2.start(600,400);
}
it is fine like this but if I write this into the the draw fuction: