Skip to content

Commit

Permalink
switched library to SimpleOpenNI
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckfg committed Nov 4, 2011
1 parent e004728 commit 208a93b
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Kinect_travel/Kinect_travel.app/Contents/Info.plist
Expand Up @@ -3,7 +3,7 @@
<plist version="0.9">
<dict>
<key>CFBundleName</key>
<string>kinect_travel04</string>
<string>Kinect_travel</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleAllowMixedLocalizations</key>
Expand All @@ -21,7 +21,7 @@
<key>CFBundleIconFile</key>
<string>sketch.icns</string>
<key>CFBundleIdentifier</key>
<string>kinect_travel04</string>
<string>Kinect_travel</string>

<!-- http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/PListKeys.html#//apple_ref/doc/uid/20001431-113616 -->
<key>LSUIPresentationMode</key>
Expand All @@ -41,7 +41,7 @@
<key>VMOptions</key>
<string> -Xms64m -Xmx1024m</string>
<key>MainClass</key>
<string>kinect_travel04</string>
<string>Kinect_travel</string>
<key>JVMVersion</key>
<string>1.5*</string>
<key>JVMArchs</key>
Expand All @@ -50,7 +50,7 @@
<string>ppc</string>
</array>
<key>ClassPath</key>
<string>$JAVAROOT/kinect_travel04.jar:$JAVAROOT/core.jar:$JAVAROOT/openkinect.jar</string>
<string>$JAVAROOT/openkinect.jar:$JAVAROOT/Kinect_travel.jar:$JAVAROOT/core.jar:$JAVAROOT/openkinect.jar</string>

<!-- http://developer.apple.com/releasenotes/Java/java141/system_properties/chapter_4_section_1.html#//apple_ref/doc/uid/TP30000285 -->
<key>Properties</key>
Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Kinect_travel/Kinect_travel.pde
Expand Up @@ -44,7 +44,7 @@ void draw() {
background(0);
depthArray = kinect.getRawDepth();
imageProcess();
image(displayImg,4,0);
image(displayImg,-4,0);
fill(255);
textFont(degFont,int(degFontSize/4));
text(int(frameRate)+" fps",width-30,20);
Expand Down Expand Up @@ -195,7 +195,7 @@ void initKinect() {
kinect.enableRGB(rgbSwitch);
kinect.enableIR(ir);
kinect.processDepthImage(process);
kinect.tilt(deg);
//kinect.tilt(deg);
}

void stop() {
Expand Down
Binary file added code/SimpleOpenNI.jar
Binary file not shown.
Binary file removed code/libKinect.jnilib
Binary file not shown.
Binary file added code/libSimpleOpenNI.jnilib
Binary file not shown.
Binary file removed code/openkinect.jar
Binary file not shown.

0 comments on commit 208a93b

Please sign in to comment.