I just downloaded the openframework
as per tutorial at http://www.openframeworks.cc/setup/linux-codeblocks
for makefile, i went to ofxKinect/example and typed make…
error i am getting is…
…/…/…/libs/openFrameworks/graphics/ofTessellator.h:31:2: error: TESStesselator does not name a type
…/…/…/libs/openFrameworks/graphics/ofTessellator.h:32:2: error: TESSalloc does not name a type
When I checked ofTessellator.h it includes a file tessellator.h which I found was empty. I downloaded this file from net but that file itself is giving error
Now the previous problem is somehow solved by adding a new library libtess2 in the libs folder.
now i am getting a new error when i do make in ofKinect/example/
In file included from src/main.cpp:1:0:
src/testApp.h:33:3: error: ofxKinectRecorder does not name a type
src/testApp.h:34:3: error: ofxKinectPlayer does not name a type
src/testApp.h:32:16: error: cannot declare field testApp::kinect to be of abstract type ofxKinect
…/…/…/addons/ofTheo-ofxKinect-650984c/src/ofxKinect.h:16:61: note: because the following virtual functions are pure within ofxKinect:
…/…/…/libs/openFrameworks/types/ofBaseTypes.h:98:25: note: ofPixels_& ofBaseHasPixels_::getPixelsRef() [with T = unsigned char]
make: *** [obj/Release/src/main.o] Error 1
Hi, you need to override those functions to make ofxKinect work.
add the following line to ofxKinect.cpp
ofPixelsRef ofxKinect::getPixelsRef() {}
and the following to ofxKinext.h
ofPixelsRef getPixelsRef();