User Tools

Site Tools


computer_vision_kinect_t1

This is an old revision of the document!


Installation Instructions

Installation instructions to run your Kinect Sensor (The sensor that i'm using is the Kinect for Windows , model 1517 ). Using OpenNI 2.1 , NiTE 2.0 , Kinect SDK 1.8 and Visual Studio 2015.


Downloading Required Softwares

Installing the Libraries using CMAKE

1) Install the Kinect SDK , OpenNI2.0 and Nite2.0 , accepting all default installation configurations.

2) Go to your control panel and open the device manager. Check if when you connect the Kinect to your PC you can see the Kinect for Windows icon.

2) Go to your computer > right click on the icon of your PC > properties > advanced system settings > environment variables > under the system variables find the Path variable and add a new path on it , the path should be your OpenNI2>redist (the default installation location is on C>Program Files ).

3) Open your Visual Studio solution configured with the OpenCV (see the OpenCV installation tutorial ) . Right click in your project name on the solution explorer (right side ) and go to properties.

4) Under C/C++ > GENERAL , add a new path to additional include directories. The path should be OpenNI2>include (again look where you saved the OpenNI2 when you installed it , the default location is under C>program files).

5) Under LINKER> GENERAL, add a new path to additional libraries directories . The path should be OpenNI2>lib.

6) Under LINKER > INPUT , add a library to additional dependencies . Add the OpenNI2.lib

7) Include on your Visual Studio project header : #include <OpenNI.h>

8) If you did all right , the OpenNI library can be used now.

9) Try to run the commands:

<Code>

              openni::OpenNI::initialize();
	openni::Device device;
	auto ret = device.open(openni::ANY_DEVICE);
	if (ret != openni::STATUS_OK) {
		throw std::runtime_error("");
	}
	//Opening Depth stream
	openni::VideoStream depthStream;
	depthStream.create(device, openni::SensorType::SENSOR_DEPTH);
	depthStream.start();

</Code>

If you can compile this commands is because your OpenNI library is successfully installed.

Testing

computer_vision_kinect_t1.1468530788.txt.gz · Last modified: 2016/07/14 14:13 by joaomatos