I'm playing around with a Kinect (the original Xbox version) on the libfreenect driver (I'm on Ubuntu 12.04 by the way). I have cloned the most recent version from git and installed it manually, as per the instructions here: http://openkinect.org/wiki/Getting_Started#Ubuntu_Manual_Install
I would like to access the registered depth values. As far as I understand, the Kinect is factory calibrated, and there is a lookup-table matching depth pixels to the proper RGB pixels.
I can open the Kinect just fine and retrieve the raw 11 bit depth data. That gives me values ranging non-linearly from around 730 to 1045 for distances from 1 to 7.5 meter.
Running device->setDepthFormat(FREENECT_DEPTH_MM);
makes the Kinect output distances in mm, so setDepthFormat seems to work.
Running device->setDepthFormat(FREENECT_DEPTH_REGISTERED);
seems to have no effect, as only the raw depth values are output. What am I missing?
Both
FREENECT_DEPTH_MM
andFREENECT_DEPTH_REGISTERED
should return depth in mm. The difference is that the latter is aligned to match the RGB video image.The
freenect_depth_format
enum inlibfreenect.h
gives these options:Source: the libfrenect git issues page
The registration transformation produces a depth image as if the RGB and IR cameras were physically situated in the same place, and not offset by 2.5cm. Have a peek at the source code if you're curious about the details.
Source: libfreenect source code