gitextract_ut9eoanc/ ├── .gitignore ├── LICENSE.txt ├── README.md ├── addon_config.mk ├── kinectExample/ │ ├── addons.make │ └── src/ │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── libs/ │ ├── libfreenect/ │ │ ├── APACHE20 │ │ ├── CONTRIB │ │ ├── GPL2 │ │ ├── include/ │ │ │ ├── libfreenect-registration.h │ │ │ └── libfreenect.h │ │ ├── platform/ │ │ │ ├── linux/ │ │ │ │ └── udev/ │ │ │ │ ├── 51-kinect.rules │ │ │ │ └── README │ │ │ └── windows/ │ │ │ ├── README.TXT │ │ │ ├── inf/ │ │ │ │ ├── xbox nui audio/ │ │ │ │ │ ├── Xbox_NUI_Audio.cat │ │ │ │ │ ├── Xbox_NUI_Audio.inf │ │ │ │ │ ├── amd64/ │ │ │ │ │ │ └── libusb0.sys │ │ │ │ │ ├── ia64/ │ │ │ │ │ │ └── libusb0.sys │ │ │ │ │ ├── libusb-win32-bin-README.txt │ │ │ │ │ ├── license/ │ │ │ │ │ │ └── libusb-win32/ │ │ │ │ │ │ └── installer_license.txt │ │ │ │ │ └── x86/ │ │ │ │ │ └── libusb0.sys │ │ │ │ ├── xbox nui camera/ │ │ │ │ │ ├── Xbox_NUI_Camera.cat │ │ │ │ │ ├── Xbox_NUI_Camera.inf │ │ │ │ │ ├── amd64/ │ │ │ │ │ │ └── libusb0.sys │ │ │ │ │ ├── ia64/ │ │ │ │ │ │ └── libusb0.sys │ │ │ │ │ ├── libusb-win32-bin-README.txt │ │ │ │ │ ├── license/ │ │ │ │ │ │ └── libusb-win32/ │ │ │ │ │ │ └── installer_license.txt │ │ │ │ │ └── x86/ │ │ │ │ │ └── libusb0.sys │ │ │ │ └── xbox nui motor/ │ │ │ │ ├── Xbox_NUI_Motor.cat │ │ │ │ ├── Xbox_NUI_Motor.inf │ │ │ │ ├── amd64/ │ │ │ │ │ └── libusb0.sys │ │ │ │ ├── ia64/ │ │ │ │ │ └── libusb0.sys │ │ │ │ ├── libusb-win32-bin-README.txt │ │ │ │ ├── license/ │ │ │ │ │ └── libusb-win32/ │ │ │ │ │ └── installer_license.txt │ │ │ │ └── x86/ │ │ │ │ └── libusb0.sys │ │ │ ├── libusb10emu/ │ │ │ │ └── libusb-1.0/ │ │ │ │ ├── failguard.cpp │ │ │ │ ├── failguard.h │ │ │ │ ├── libusb.h │ │ │ │ ├── libusbemu.cpp │ │ │ │ ├── libusbemu_internal.h │ │ │ │ ├── libusbemu_threads.h │ │ │ │ └── libusbemu_threads_win32.h │ │ │ ├── stdbool.h │ │ │ └── unistd.h │ │ └── src/ │ │ ├── cameras.c │ │ ├── cameras.h │ │ ├── core.c │ │ ├── freenect_internal.h │ │ ├── loader.h │ │ ├── registration.c │ │ ├── registration.h │ │ ├── tilt.c │ │ ├── usb_libusb10.c │ │ └── usb_libusb10.h │ ├── libusb-1.0/ │ │ ├── include/ │ │ │ └── libusb-1.0/ │ │ │ └── libusb.h │ │ └── lib/ │ │ └── osx/ │ │ └── usb-1.0.a │ └── libusb-win32/ │ ├── AUTHORS.txt │ ├── COPYING_LGPL.txt │ ├── README.txt │ ├── include/ │ │ └── lusb0_usb.h │ └── lib/ │ ├── vs/ │ │ ├── libusb.lib │ │ └── libusbd.lib │ └── win_cb/ │ ├── libusb.lib │ └── libusbd.lib ├── scripts/ │ ├── update_freenect.sh │ └── update_libusb-win32.sh └── src/ ├── ofxBase3DVideo.h ├── ofxKinect.cpp └── ofxKinect.h