Notice: MediaWiki has been updated. Report any rough edges to marcan@marcan.st

Fakenect

From OpenKinect
Jump to: navigation, search

Description

The Kinect is quickly becoming a transformative device for Human/Computer Interaction, Computer Vision, and Robotics. We regularly hear "I want to experiment with the demos out there but I don't have a kinect". From that, you have fakenect, a library that identically replicates the libfreenect library so that anything that dynamically links it can function without requiring a Kinect. Instead of generating synthetic data, there is a "record" program that dumps the RGB, Depth, and accelerometer data into a directory that can be loaded by fakenect.

This consists of a "record" program to save dumps from the kinect sensor and a library that can be linked to, providing an interface compatible with freenect. This allows you to save data and repeat for experiments, debug problems, share datasets, and experiment with the kinect without having one.

Who is involved

Search for Fakenect in People

However (Brandyn) is trying to organize things for Fakenect. See this blog post for more info.

Record

./record my_output // NOTE: output directory is created for you

The program takes one argument (the output directory) and saves the acceleration, depth, and rgb data as individual files with names in the form "TYPE-CURRENTIME-TIMESTAMP" where TYPE is either (a)ccel, (d)epth, or (r)gb, TIMESTAMP corresponds to the timestamp associated with the observation (or in the case of accel, the last timestamp seen), and CURRENTTIME corresponds to a floating point version of the time in seconds. The purpose of storing the current time is so that delays can be recreated exactly as they occurred. For RGB and DEPTH the dump is just the entirety of the data provided in PPM and PGM formats respectively (just a 1 line header above the raw dump). For ACCEL, the dump is the 'freenect_raw_device_state'. Only the front part of the file name is used, with the rest left undefined (extension, extra info, etc).

A file called INDEX.txt is also output with all of the filenames local to that directory to simplify the format (e.g., no need to read the directory structure).

Here is an example of using the program mkdir out ./record out

And it will keep running, when you want to stop it, hit Ctrl-C and the signal will be caught, runloop stopped, and everything will be stored cleanly.

Library

Use the resulting fakenect .so dynamically instead of libfreenect.

We read 1 update from the index per call, so this needs to be called in a loop like usual. If the index line is a Depth/RGB image the provided callback is called. If the index line is accelerometer data, then it is used to update our internal state. If you query for the accelerometer data you get the last sensor reading that we have. The time delays are compensated as best as we can to match those from the original data and current run conditions (e.g., if it takes longer to run this code then we wait less).

Build

This is built with the main cmake script.

This gives you a build/lib/fakenect/libfreenect.so (note that it has the same name, but it is not the same) that you dynamically link in instead of libfreenect.so.

Evaluation

There is a demo in wrappers/python, see the README there

Here is an example of calling the cython demo

   sudo LD_PRELOAD="/usr/local/lib/fakenect/libfreenect.so" FAKENECT_PATH="thanksgiving0" python demo_cv_sync.py

Note the FAKENECT_PATH, you pass in the path to a directory made with "record"

OSX users should use DYLD_LIBRARY_PATH instead of LD_PRELOAD:

  DYLD_LIBRARY_PATH="/usr/local/lib/fakenect/" FAKENECT_PATH="thanksgiving0" python  demo_cv_sync.py

Samples

Eventually we need a repository for useful datasets. For now, try these!

http://dl.dropbox.com/u/15736519/legos0.tar.bz2

http://dl.dropbox.com/u/15736519/sophie0.tar.bz2

http://dl.dropbox.com/u/15736519/thanksgiving0.tar.bz2