Install OpenNi2 and Nite2 on Linux

7.8k Views Asked by At

Im not able to find the website and instructions how to install openni2 and nite2 on linux. Does anyone know where i can find these libs and how to install them?

2

There are 2 best solutions below

0
On

http://www.linuxdiyf.com/linux/25349.html

This link Have showed how to install Openni2 & NiTE2 in ubuntu 16.04

I reorganized it as follows

sudo apt-get install git g++ cmake libxi-dev libxmu-dev libusb-1.0-0-dev pkg-config freeglut3-dev build-essential

mkdir -p HandTrack/src
cd HandTrack/src
#install libfreenect
git clone https://github.com/OpenKinect/libfreenect.git
cd libfreenect
mkdir build; cd build
cmake .. -DBUILD_OPENNI2_DRIVER=ON
make
sudo make install

sudo mkdir -p /etc/udev/rules.d/
sudo cp ../platform/linux/udev/51-kinect.rules /etc/udev/rules.d/

#install Openni2
cd PATHTO/HandTrack/src
wget https://s3.amazonaws.com/com.occipital.openni/OpenNI-Linux-x64-2.2.0.33.tar.bz2

tar -xjvf OpenNI-Linux-x64-2.2.0.33.tar.bz2 && rm OpenNI-Linux-x64-2.2.0.33.tar.bz2
cd OpenNI-Linux-x64-2.2
sudo ./install.sh
#Test installation of Openni2
cd PATHTO/HandTrack/src
cp libfreenect/build/lib/OpenNI2-FreenectDriver/libFreenectDriver.so OpenNI-Linux-x64-2.2/Redist/OpenNI2/Drivers/

cp libfreenect/build/lib/OpenNI2-FreenectDriver/libFreenectDriver.so OpenNI-Linux-x64-2.2/Tools/OpenNI2/Drivers/

sudo apt-get install usbutils
lsusb #You should see kinect devices

cd OpenNI-Linux-x64-2.2/Tools
./NiViewer

#Install NiTE2
cd PATHTO/HandTrack/src

wget http://jaist.dl.sourceforge.net/project/roboticslab/External/nite/NiTE-Linux-x64-2.2.tar.bz2

tar xjvf NiTE-Linux-x64-2.2.tar.bz2 && rm NiTE-Linux-x64-2.2.tar.bz2

cd NiTE-Linux-x64-2.2
sudo ./install.sh

cd  ..
cp libfreenect/build/lib/OpenNI2-FreenectDriver/libFreenectDriver.so NiTE-Linux-x64-2.2/Samples/Bin/OpenNI2/Drivers/

cp OpenNI-Linux-x64-2.2/Redist/libOpenNI2.so NiTE-Linux-x64-2.2/Samples/Bin

cd NiTE-Linux-x64-2.2/Samples/Bin
./UserViewer
0
On

The OpenNi2 (and Nite) project was discontiued when apple bought primesense. Using google you may find a million instructions of how or where to find them.

Then again, some other companies have done some updates that may help you. One of this companies is occipital structure:

https://github.com/occipital/openni2

In the github readme you will find the instructions of how to install it in different systems.

Nite2 is a little more difficult to find since the license is different and I think I can't post it here. For the installing instructions, it is similar to the ones of openni2 and are also in the readme file of the package.