Last active
April 29, 2018 14:26
-
-
Save jetsonhacks/1bd2830cc1a5790a6ac2 to your computer and use it in GitHub Desktop.
Install libfreenect2 on the Jetson TK1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#from https://github.com/xlz/libfreenect2/wiki/Jetson-TK1-HOWTO | |
# Install Prerequisites | |
#opencv-dev -> opencv4tegra-dev -> already installed from Jetpack | |
sudo apt-get install -y build-essential libturbojpeg libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libjpeg-turbo8-dev | |
# Get libfreenect2 | |
git clone https://github.com/jetsonhacks/libfreenect2.git | |
# Copy nv_headers into libfreenect2/depends | |
wget http://developer.download.nvidia.com/mobile/tegra/l4t/r21.2.0/sources/gstjpeg_src.tbz2 | |
tar -xvf gstjpeg_src.tbz2 gstjpeg_src/nv_headers | |
mv gstjpeg_src/nv_headers/ libfreenect2/depends/ | |
# Cleanup the empty folder | |
rmdir gstjpeg_src/ | |
# build libusb and glfw | |
cd libfreenect2/depends | |
sh install_ubuntu.sh | |
#fix up libturbojpeg.so linker doesn't get upset | |
sudo ln -s /usr/lib/arm-linux-gnueabihf/libturbojpeg.so.0.0.0 /usr/lib/arm-linux-gnueabihf/libturbojpeg.so | |
# Build Protonect example | |
cd ../examples/protonect/ | |
cmake CMakeLists.txt | |
make && sudo make install | |
# Install the udev rule so that you always have read/write permission to the Kinect V2 | |
cd ../.. | |
sudo cp extras/90-kinect2.rules /etc/udev/rules.d/90-kinect2.rules | |
/bin/echo -e "\e[1;32mFinished.\e[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After running the ./Protonect I get an error:
what(): JPEG parameter struct mismatch: library thinks size is 536, caller expects 560