Analysis updated 2026-06-26
Read real-time depth frames from a Kinect v1 sensor on Linux or macOS for a computer vision project
Record a Kinect depth and color session to disk and replay it later using fakenect without the physical hardware
Control the Kinect's tilt motor and LED from a Python script to build a custom interactive installation
Prototype a 3D scanning or gesture-tracking application using the Kinect's depth and color streams
| openkinect/libfreenect | raspberrypi/pico-examples | contiki-os/contiki | |
|---|---|---|---|
| Stars | 3,794 | 3,794 | 3,795 |
| Language | C | C | C |
| Setup difficulty | moderate | moderate | hard |
| Complexity | 3/5 | 3/5 | 5/5 |
| Audience | developer | developer | researcher |
Figures from each repo's GitHub metadata at analysis time.
Requires the original Kinect v1 hardware (model 1414), the newer Kinect v2 is not compatible and needs libfreenect2.
Libfreenect is an open-source driver that lets you access data from the original Xbox 360 Kinect sensor on a regular computer. The Kinect was a motion-sensing peripheral that used a combination of a color camera, an infrared depth sensor, and a microphone array to track body movement and capture 3D spatial data without requiring the user to hold a controller. Microsoft built it for the Xbox 360, but enthusiasts and researchers quickly found ways to tap into its data stream on PCs. This library provides that access on Linux, macOS, and Windows. Once connected and the driver installed, you can read the RGB color image from the camera, the depth image that shows how far each point in the scene is from the sensor, and audio from the microphone array. You can also control the motor that tilts the device, the indicator LED, and read values from the built-in accelerometer. The library is written in C with wrappers available for C++, C#, Python, Ruby, Java, and ActionScript. A tool called fakenect lets you record a session to disk and play it back later without needing the physical hardware, which is useful for testing and development. An important note: this library is for the original Kinect (model 1414 and similar). The newer Kinect v2 that shipped with the Xbox One uses a different and incompatible sensor design. A separate project, libfreenect2, exists for that device. The project is maintained by the OpenKinect community and is licensed under a dual Apache v2 and GPL v2 license. It originated as a reverse-engineering effort shortly after the Kinect was released in 2010.
An open-source driver that lets your computer read depth images, color video, and audio from the original Xbox 360 Kinect sensor, with bindings for Python, Ruby, Java, and more.
Mainly C. The stack also includes C, C++, Python.
Use freely for any purpose including commercial projects, under either the Apache 2.0 or GPL v2 license, your choice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.