I'm trying to learn C++, get into image processing and Kinect development using the 1.8 version of Microsoft's SDK, OpenCV and Visual C++ 2010 Express. I followed the steps described here (sans the OpenGL part) to 'include' the Kinect and OpenCV libraries, but I don't seem to be able to do so. I copied and pasted OpenCV's dlls into the build directory to get that working but I don't know what to do about the Kinect. Any clues on what I might be doing wrong?
EDIT: A little bit more of info. I only have a main.cpp file with the following two lines at the top (is it called header guard?):
#include <opencv2/opencv.hpp>
#include <NuiApi.h>
The second one makes the compiler yell at me:
fatal error C1083: Cannot open include file: 'NuiApi.h': No such file or directory
Now these files should be reachable given the property sheets I configured earlier.