depth value puzzle

edited September 2016 in Kinect

I try to capture the depth data with

PImage depth = kinect.GetDepth();

For a certain x,y pixel I try to get the depth value with:

depth.loadPixels();
println(depth.pixels[x + y*width]);

but get funny high negative values.

What' s the trick to get reasonable numbers?

Answers

Sign In or Register to comment.