I am doing a project relating to the Kinect. I am using Processing and the code works fine. I wanted to use Eclipse instead so I installed the revelant processing tools that enable me to do this. I am using the SimpleOpenNi library and when I run the code I get the error:
Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError: Expecting an absolute path of the library: /SimpleOpenNI/library/win64/OpenNI2.dll
at java.lang.Runtime.load0(Unknown Source)
at java.lang.System.load(Unknown Source)
at SimpleOpenNI.SimpleOpenNI.<clinit>(SimpleOpenNI.java:59)
at ie.sign.irish.FingerTrackerKinect.setup(FingerTrackerKinect.java:23)
at processing.core.PApplet.handleDraw(PApplet.java:2281)
at processing.core.PGraphicsJava2D.requestDraw(PGraphicsJava2D.java:237)
at processing.core.PApplet.run(PApplet.java:2177)
at java.lang.Thread.run(Unknown Source)
I have the location of the dll file in my PATH under Environment Variables and also in the folder of my project. Tried to add it to the build path to no avail.
If anyone can shed any light on this issue that would be great.
Thanks in advanced.