Hi everybody. I'm new comer with Processing. I have a 3iCube USB3.0 vision camera and I'm trying to use it with Processing but I can not get the signal from this camera. Here's my code:
import processing.video.*;
Capture cam;
void setup() {
size(600, 400);
String[] cameras = Capture.list();
for (int i = 0; i < cameras.length; i++) {
println(cameras[i]);
}
}
void draw() {
}
My problem is that Processing can not detect USB camera even laptop already detected this camera.
You can see that console shows only internal webcam of laptop.
Anybody know the reason why? Anybody know other brands of USB camera that I can use with Processing as external camera?
:(( :((