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?