Did you get an answer on how to solve tue_student's question? I am having a similar problem and need help.
import SimpleOpenNI.*;
SimpleOpenNI context;
void setup()
{
context = new SimpleOpenNI(this);
// mirror is by default enabled
context.setMirror(true);
// enable depthMap generation
context.enableDepth();
// enable ir generation
context.enableRGB();
//context.enableRGB(640,480,30);
//context.enableRGB(1280,1024,15);
size(context.depthWidth() + context.rgbWidth() + 10, context.rgbHeight());
}
Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\processing-1.5.1\java\bin\SimpleOpenNI.dll: The specified procedure could not be found
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1803)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1720)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1028)
at SimpleOpenNI.SimpleOpenNI.<clinit>(SimpleOpenNI.java:33)
at DepthImage.setup(DepthImage.java:40)
at processing.core.PApplet.handleDraw(Unknown Source)
at processing.core.PApplet.run(Unknown Source)
at java.lang.Thread.run(Thread.java:662)