Quantcast
Channel: Library Questions - Processing 2.x and 3.x Forum
Viewing all articles
Browse latest Browse all 2896

How to connect 3iCube USB3.0 vision camera with Processing?

$
0
0

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. Capture Capture

Anybody know the reason why? Anybody know other brands of USB camera that I can use with Processing as external camera?

:(( :((


Viewing all articles
Browse latest Browse all 2896

Trending Articles