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

[Basic]opencv processing + simpleopenNI

$
0
0

Hi forum, I am trying to use the new openCV for processing library.. Seems great! But all examples uses testImages.. I want to use simple OpenNI (kinect) with this library.. Can some help me with this?

A basic example in simpleOPENNI looks like:

SimpleOpenNI context;
void setup()
{
size(640*2, 480);
context = new SimpleOpenNI(this);
context.enableDepth();
}
void draw()
{
// update the cam
context.update();
image(context.depthImage(), 0, 0);
}

Viewing all articles
Browse latest Browse all 2896

Trending Articles