Difference between revisions of "PCL/OpenNI tutorial 1: Installing and testing"

From robotica.unileon.es
Jump to: navigation, search
Line 157: Line 157:
 
[[Image:Ccmake_GUI_2.png|thumb|none|700px|Interface of ''ccmake''.]]
 
[[Image:Ccmake_GUI_2.png|thumb|none|700px|Interface of ''ccmake''.]]
  
When you are done, press <span style="color:#228B22">'''C'''</span> to configure and <span style="color:#228B22">'''G'''</span> to generate and exit the tool.
+
Here you can change the build options. The program usage can be found at the bottom of the screen. Try turning all functionality <span style="color:#FF1493">"ON"</span>. The most important thing, in case you want to use CUDA, is to enable it and give CMake the path to your SDK. Go to the <span style="color:#FF1493">"CUDA_SDK_ROOT_DIR"</span> option and enter the correct path (mine was <span style="color:#FF8C00">''/home/me/NVIDIA_GPU_Computing_SDK/''</span>).
 +
 
 +
When you are done, press <span style="color:#228B22">'''C'''</span> to configure and <span style="color:#228B22">'''G'''</span> to generate and exit the tool. Sometimes, the options you change can activate previously omitted parameters, or prompt some warning text. Just press <span style="color:#228B22">'''E'''</span> when you are finished reading the message, and keep pressing <span style="color:#228B22">'''C'''</span> until it lets you generate (new parameters will be marked with an asterisk, so you can check them and decide whether or not you want further customization).
 +
 
 +
If you are done configuring, it is time to build:
 +
 
 +
<geshi lang=Bash lines=0>make</geshi>
  
 
<span style="color:#606060">'''''NOTE: Additionally, you can append the parameter -jX to speed up the compilation, X being the number of cores or processors of your PC, plus one.'''''</span>
 
<span style="color:#606060">'''''NOTE: Additionally, you can append the parameter -jX to speed up the compilation, X being the number of cores or processors of your PC, plus one.'''''</span>
Line 164: Line 170:
  
 
<geshi lang=Bash lines=0>rm -rf ./*</geshi>
 
<geshi lang=Bash lines=0>rm -rf ./*</geshi>
 +
 +
===Installing===
 +
 +
It will take some time to compile PCL (up to a few hours if your PC is not powerful enough). When it is finished, install it system-wide with:
 +
 +
<geshi lang=Bash lines=0>sudo make install</geshi>
 +
 +
And you should reboot and proceed to the next section, to see if your computer now recognizes (and uses) your Kinect device.
 +
 +
=Testing=
  
 
=Conclusions=
 
=Conclusions=

Revision as of 10:06, 14 September 2012

Microsoft Kinect device.

This series of tutorials will explain the usage of a Kinect device for "serious" researching purposes. As you may know, Kinect is in fact an affordable depth sensor, developed with technology from PrimeSense, based on infrarred structured light method. It also has a common camera (which makes it a RGB-D device), a microphone and a motorized pivot. Its use is not limited to playing with a Xbox360 console, you can plug it to a computer and use it like any other sensor. Many open-source drivers and frameworks are available.

Since its release on November 2010, it has gained a lot of popularity, specially among the scientific community. Many researches have procured themselves one because, despite the low cost (about 150 €), it has proven to be a powerful solution for depth sensing projects. Current investigations focus on real-time surface mapping, object recognition and tracking, and localization. Impressive results (like the KinectFusion project from Microsoft) are already possible.

I will explain the installation and usage of one of these Kinect devices with a common PC, and the possibilities it offers. I will do it in an easy to understand way, intended for students that have just acquired it and want to start from scratch.

NOTE: The tutorials are written for Linux platforms. Also, 64-bit versions seem to work better than 32-bit.

Requirements

You will need the following:

  • A common Kinect device, out of the box. You can buy it in your local electronics shop, or online. It also includes a free copy of Kinect Adventures, which is useless if you don't own the console. Microsoft has released a Kinect for Windows device, which is a normal looking Kinect no longer compatible with Xbox360, that will only work with their official SDK, intended for developers only.
  • A computer running Linux (Debian or Ubuntu preferably).
  • A medium-sized room. Kinect has some limitations for depth measurement: 40cm minimum, 8m maximum (make it 6).

NOTE: Kinect for Windows may have problems working with open source drivers on Linux .

Connecting everything

Kinect does not work with a common USB port. Its power consumption is a bit higher because of the motor, so Microsoft came up with a connector that combines USB and power supply. Old Xbox 360 models needed a special adapter, new ones already have this new port. Luckily, Kinect comes with the official adapter out of the box (otherwise you will have to buy one).

Just plug the adapter to any power socket, and the USB to your computer. Let's check typing this in a terminal:

<geshi lang=Bash lines=0>lsusb</geshi>

Output should list the following devices:

<geshi lang=Bash lines=0>Bus 001 Device 005: ID 045e:02b0 Microsoft Corp. Xbox NUI Motor Bus 001 Device 006: ID 045e:02ad Microsoft Corp. Xbox NUI Audio Bus 001 Device 007: ID 045e:02ae Microsoft Corp. Xbox NUI Camera</geshi>

Installing the software

There is more than one way to get your Kinect working on your PC, and start developing applications for it:

  • Kinect for Windows: released on June 16, 2011 as a non-commercial SDK intended for application development. Version 1.5 was released on May 21, 2012. Because it comes from Microsoft, it's obviously the easiest way to get everything working. Sadly, there is no Linux version.
  • libfreenect library: from the OpenKinect project, it is intended to be a free and open source alternative to the official drivers. libfreenect is used by projects like ofxKinect, an addon for the openFrameworks toolkit that runs on Linux and OS X. ofxKinect packs a nice example application to show the RGB and point cloud taken from Kinect.
  • PrimeSense drivers: they were released as open source after the the OpenNI project was created, along with the motion tracking middleware, NITE. NI stands for Natural Interaction, and the project tries to enforce a common standard for human input using Kinect-like sensors. These official drivers are used by ROS (the Robot Operating System, a massive collection of libraries and tools for robotic researchers) and PCL (the Point Cloud Library, with everything needed for 3D point cloud processing).
  • SensorKinect: a modified version of the official PrimeSense drivers, used for example by ofxOpenNI (another openFrameworks addon).

For this tutorial, we are going to use PCL.

Precompiled PCL for Ubuntu

There is a PPA (Personal Package Archive, a private repository) which has everything we need. Add it to your sources, and install everything:

<geshi lang=Bash lines=0>sudo add-apt-repository ppa:v-launchpad-jochen-sprickerhof-de/pcl sudo apt-get install build-essential libpcl-all libpcl-all-dev openni-dev ps-engine cmake -y</geshi>

Compiling PCL from source

For Linuxes without a precompiled version of PCL, you will need to compile it yourself. This has an advantage, actually: you can customize the build options and choose what you want. Also, the result binaries and libraries should be a bit faster. The instructions are here, but the steps are easy so I will show them to you.

First, you must choose whether to install the stable or the experimental branch of PCL. The stable branch is the latest official release and it's guaranteed to work without problems. The experimental branch may give you a compiling error seldomly, but you can find some interesting features that stable users will have to wait some months for. Apart from that, both are built the same way.

Installing the dependencies

Some of PCL dependencies can be installed via the package manager. Others will require additional work.

<geshi lang=Bash lines=0>sudo apt-get install build-essential libboost-all-dev libeigen3-dev libflann-dev libvtk5-dev libvtk5-qt4-dev libqhull-dev cmake cmake-curses-gui -y</geshi>

OpenNI

PCL uses OpenNI and the PrimeSense drivers to get data from Kinect. It's optional, but it wouldn't make much sense not to install it, would it? If you are using Ubuntu, add the PPA and install openni-dev and ps-engine. Otherwise, go to the OpenNI download page and get the OpenNI and PrimeSense Sensor sources. Extract them, and install the dependencies:

<geshi lang=Bash lines=0>sudo apt-get install python libusb-1.0-0-dev freeglut3-dev doxygen graphviz -y</geshi>

You are not done yet. OpenNI requires Sun's official JDK (Java Development Kit), which is no longer available on apt repositories. Go to the Java SE downloads page (SE means Standard Edition) and download the latest version (i.e., jdk-7u7-linux-x64.tar.gz). Extract it, then move the contents to /usr/lib/jvm/ so it is available system-wide:

<geshi lang=Bash lines=0>sudo mkdir -p /usr/lib/jvm/ sudo cp -r jdk1.7.0_07/ /usr/lib/jvm/</geshi>

Then, make it the default choice to compile and run Java programs:

<geshi lang=Bash lines=0>sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.7.0_07/bin/java" 1 sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.7.0_07/bin/javac" 1 sudo update-alternatives --install "/usr/bin/jar" "jar" "/usr/lib/jvm/jdk1.7.0_07/bin/jar" 1</geshi>

To be sure, use:

<geshi lang=Bash lines=0>sudo update-alternatives --config java sudo update-alternatives --config javac sudo update-alternatives --config jar</geshi>

Sun's JDK is now installed. You can now go to the directory where you extracted OpenNI (OpenNI-OpenNI-3d355ac/ for me), and open a terminal in the Platform/Linux/CreateRedist/ subdirectory. Issue:

<geshi lang=Bash lines=0>./RedistMaker</geshi>

When it finishes, and if there are no errors, go to Platform/Linux/Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.23/ (or your equivalent), and install (you must be root):

<geshi lang=Bash lines=0>sudo ./install.sh</geshi>

Now, go to the directory where you extracted the PrimeSense drivers (PrimeSense-Sensor-fc51d0a/ for me), and repeat the exact same procedure (go to Platform/Linux/CreateRedist/, issue ./RedistMaker, go to Platform/Linux/Redist/Sensor-Bin-Linux-x64-v5.1.0.41/, issue sudo ./install.sh). Congratulations, you have now installed OpenNI.

CUDA

Like OpenNI, nVidia CUDA is an optional dependency, that will allow PCL to use your GPU (Graphics Processing Unit, that is, your graphics card) for certain computations. This is mandatory for tools like KinFu (do not bother unless you have at least a series 400 card with 1.5 GB memory).

Go to the CUDA download page, which is self-explanatory, and get the toolkit and the SDK for your system (the drivers you already have installed, right?). Give them execute permissions:

<geshi lang=Bash lines=0>chmod +x cudatoolkit_4.2.9_linux_64_ubuntu11.04.run chmod +x gpucomputingsdk_4.2.9_linux.run</geshi>

And install them. You can use the default options:

<geshi lang=Bash lines=0>sudo ./cudatoolkit_4.2.9_linux_64_ubuntu11.04.run sudo ./gpucomputingsdk_4.2.9_linux.run</geshi>

Just as the installer output warns you, some additional steps are needed. Open /etc/ld.so.conf:

<geshi lang=Bash lines=0>sudo nano /etc/ld.so.conf</geshi>

And append these two lines:

<geshi lang=Bash lines=0>/usr/local/cuda/lib64 # For 64-bit only, comment it otherwise /usr/local/cuda/lib</geshi>

Save with Ctrl+O and Enter, exit with Ctrl+X. Reload the cache of the dynamic linker with:

<geshi lang=Bash lines=0>sudo ldconfig</geshi>

Now, append CUDA's bin directory to your PATH. Do this by editing your local .bashrc file:

<geshi lang=Bash lines=0>nano ~/.bashrc</geshi>

And append this line:

<geshi lang=Bash lines=0>export PATH=$PATH:/usr/local/cuda/bin</geshi>

CUDA is now installed.

Getting the source

To get the stable version, go to the downloads page, get PCL-1.6.0-Source.tar.bz2 or whatever the latest release is, and extract it somewhere. For the experimental version, use Subversion:

<geshi lang=Bash lines=0>sudo apt-get install subversion -y svn co http://svn.pointclouds.org/pcl/trunk PCL-trunk-Source</geshi>

Compiling

Go the the PCL source directory (PCL-1.6.0-Source/ or PCL-trunk-Source/ for me), and create a new subdirectory to keep the build files in:

<geshi lang=Bash lines=0>mkdir build cd build</geshi>

Now it is time to configure the project using CMake. We will tell it to build in Release (fully optimized, no debug capabilities) mode now, and customize the rest of the options later:

<geshi lang=Bash lines=0>cmake -DCMAKE_BUILD_TYPE=Release ..</geshi>

CMake should be able to find every dependency, thus being able to build every subsystem except for the ones marked as "Disabled by default". If you are happy, you can build now, otherwise let's invoke CMake's curses interface to change a couple of things (mind the final dot):

<geshi lang=Bash lines=0>ccmake .</geshi>

File:Ccmake GUI 2.png
Interface of ccmake.

Here you can change the build options. The program usage can be found at the bottom of the screen. Try turning all functionality "ON". The most important thing, in case you want to use CUDA, is to enable it and give CMake the path to your SDK. Go to the "CUDA_SDK_ROOT_DIR" option and enter the correct path (mine was /home/me/NVIDIA_GPU_Computing_SDK/).

When you are done, press C to configure and G to generate and exit the tool. Sometimes, the options you change can activate previously omitted parameters, or prompt some warning text. Just press E when you are finished reading the message, and keep pressing C until it lets you generate (new parameters will be marked with an asterisk, so you can check them and decide whether or not you want further customization).

If you are done configuring, it is time to build:

<geshi lang=Bash lines=0>make</geshi>

NOTE: Additionally, you can append the parameter -jX to speed up the compilation, X being the number of cores or processors of your PC, plus one.

Remember that, at any time, you can manually force the project to be reconfigured and built from scratch by emptying the build/ directory with:

<geshi lang=Bash lines=0>rm -rf ./*</geshi>

Installing

It will take some time to compile PCL (up to a few hours if your PC is not powerful enough). When it is finished, install it system-wide with:

<geshi lang=Bash lines=0>sudo make install</geshi>

And you should reboot and proceed to the next section, to see if your computer now recognizes (and uses) your Kinect device.

Testing

Conclusions




FAQ: Kinect troubleshooting