ofxLeapMotion2 is an OpenFrameworks addon for the second version of the LeapMotion SDK supporting skeleton tracking (2.0.1). It is tested on Mac OSX, and should support Linux and Windows as well.
It is based on Theo Watson's original ofxLeapMotion addon.
-
Use of this addon requires a Developer License from LeapMotion see: https://www.leapmotion.com/developers
-
Once registered you should download and install the latest Leap Software from https://beta.leapmotion.com/
-
To use ofxLeapMotion2, first you need to download and install openFrameworks.
-
To get a copy of the repository you can download the source from http://github.com/genekogan/ofxLeapMotion2 or, alternatively, you can use git clone:
git clone git://github.com/genekogan/ofxLeapMotion2.git
- The addon should sit in
openFrameworks/addons/ofxLeapMotion2/
.
Xcode4: Open the Xcode project, select the "leapMotionExample Debug" scheme, and hit "Run".
To develop your own project based on ofxLeapMotion, simply copy the example project and rename it. You probably want to put it in your apps folder, for example, after copying:
openFrameworks/addons/ofxLeapMotion2/example_leap/ => openFrameworks/apps/myApps/example_leap/
Then after renaming:
openFrameworks/apps/myApps/myLeapProject/
Rename the project in Xcode (do not rename the .xcodeproj file in Finder!): Slow double click the project name and rename (Xcode4)
In the Xcode project browser:
-
add the ofxLeapMotion2 sources to the project:
- create a new group "ofxLeapMotion2"
- drag these directories from ofxLeapMotion into this new group: ofxLeapMotion2/src & ofxLeapMotion2/libs
-
IMPORTANT!
-
On OS X, you must have this in the Run Script Build Phase of your Xcode project. where the first path ../../../addons/ofxLeapMotion2/ is the path to the ofxLeapMotion addon.
cp -f ../../../addons/ofxLeapMotion2/libs/lib/osx/libLeap.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/libLeap.dylib"; install_name_tool -change ./libLeap.dylib @executable_path/libLeap.dylib "$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME";
If you don't have this you'll see an error in the console: dyld: Library not loaded: @loader_path/libLeap.dylib
Feel free to log bug reports and issues to the ofxLeapMotion Github page: https://github.com/genekogan/ofxLeapMotion2/issues