Driver for Kinect for Windows v2 (K4W2) devices (release and developer preview).
Note: libfreenect2 does not do anything for either Kinect for Windows v1 or Kinect for Xbox 360 sensors. Use libfreenect1 for those sensors.
This driver supports:
- RGB image transfer
- IR and depth image transfer
- registration of RGB and depth images
Missing features:
- audio transfer
- firmware updates
Watch the OpenKinect wiki at www.openkinect.org and the mailing list at https://groups.google.com/forum/#!forum/openkinect for the latest developments and more information about the K4W2 USB protocol.
No. It's a pure USB3 device due to the high bandwidth requirements.
Either your device is connected to an USB2-only port (see above), or you don't have permissions to access the device. On Linux, try running Protonect as root (e.g. using sudo
). If that fixes things, place contrib/90-kinect2.rules
into /etc/udev/rules.d/
and re-plug the device.
USB3 as a whole is a flaky thing. If you're running Linux, try upgrading to a recent kernel (>= 3.16) first. If that doesn't work, try a different USB3 controller. The following ones are known to work on a 3.16 kernel:
- Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI
- Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI
- NEC Corporation uPD720200 USB 3.0 Host Controller
Probably not working:
- ASMedia Technology Inc. Device 1142
Finally, it's also possible that your executable is not actually using the patched libusb from the depends/ folder which is required at the moment. Check this using ldd
, and adjust your LD_LIBRARY_PATH
if necessary.
The depth packet processor runs on OpenGL by default. You can try alternatives, such as OpenCL (by running Protonect cl
) or CPU (Protonect cpu
). At least the CPU DPP should always produce some output, although slow. For OpenCL on Intel/Linux, you can also try to set /sys/module/i915/parameters/enable_cmd_parser
to 0.
- Joshua Blake [email protected]
- Florian Echtler
- Christian Kerl
This project uses the libusbx drivers and API. Setting things up varies by platform.
If you have the Kinect for Windows v2 SDK, install it first. You don't need to uninstall the SDK or the driver before doing this procedure.
Install the libusbK backend driver for libusbx:
- Download Zadig from http://zadig.akeo.ie/.
- Run Zadig and in options, check List All Devices and uncheck Ignore Hubs or Composite Parents
- Select the Xbox NUI Sensor (composite parent) from the drop-down box. (Ignore the Interface 0 and Interface 2 varieties.) The current driver will list usbccgp. USB ID is VID 045E, PID 02C4.
- Select libusbK (v3.0.6.0) from the replacement driver list.
- Click the Replace Driver button. Click yes on the warning about replacing a system driver. (This is because it is a composite parent.)
- Done.
To uninstall the libusbK driver (and get back the official SDK driver, if installed):
- Open Device Manager
- Under libusbK USB Devices, right click the "Xbox NUI Sensor (Composite Parent)" device and select uninstall.
- Important: Check the "Delete the driver software for this device." checkbox, then click OK.
If you already had the official SDK driver installed and you want to use it:
- In Device Manager, in the Action menu, click "Scan for hardware changes."
This will enumerate the Kinect sensor again and it will pick up the K4W2 SDK driver, and you should be ready to run KinectService.exe again immediately.
You can go back and forth between the SDK driver and the libusbK driver very quickly and easily with these steps.
-
cd
into a directory where you want to keep libfreenect2 stuff in -
Install opencv and git via brew (or your own favorite package manager, ie ports)
brew update brew tap homebrew/science brew install opencv git nasm wget
1. Download the libfreenect2 repository
```
git clone [email protected]:OpenKinect/libfreenect2.git
-
Install a bunch of dependencies
cd ./libfreenect2 sh ./depends/install_mac.sh
1. Build the actual protonect executable
```
cd ./examples/protonect/
cmake CMakeLists.txt
make && make install
-
Run the program
./bin/Protonect
### Ubuntu 14.04 (perhaps earlier)
1. Install libfreenect2
```
git clone https://github.com/OpenKinect/libfreenect2.git
-
Install a bunch of dependencies
sudo apt-get install -y build-essential libturbojpeg libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libopencv-dev automake
cd libfreenect2/depends sh install_ubuntu.sh
1. Fix libturbojpeg if needed:
```
sudo ln -s /usr/lib/x86_64-linux-gnu/libturbojpeg.so.0.0.0 /usr/lib/x86_64-linux-gnu/libturbojpeg.so
-
Build the actual protonect executable
cd ../examples/protonect/ cmake CMakeLists.txt make && sudo make install
1. Run the program
```
./bin/Protonect
I'm not sure, but look for libusbx installation instructions for your OS. Figure out how to attach the driver to the Xbox NUI Sensor composite parent device, VID 045E PID 02C4, then contribute your procedure.
Make sure you install the driver as describe above first.
- Follow directions in the ./depends/README.depends.txt to get the dependencies. (Process may be streamlined later.)
1. Use CMake to generate a solution.
2. Build and run.
- ?
- Build and run.
- Contribute your solution for your platform back to the project please.
The K4W2 hardware is currently pre-release. Per the K4W2 developer program agreement, all public demonstrations and code should display this notice:
"This is preliminary software and/or hardware and APIs are preliminary and subject to change."