OSCeleton Library for use in processing.
Add this folder to the libraries folder inside you Processing Sketch directory
This is a processing library which listens to OSC messages sent from OSCeleton. You will need to setup your kinect to send skeleton data. More info on how to do that here: http://skyra.github.io/blog/Kinect-Processing/
Once you have that set up, start osceleton on a port
./osceleton -p 12345
In your processing sketch create a new OSCeletonWrapper object
OSCeletonWrapper osceleton = new OSCeletonWrapper(this, 12345);
Then you can query this wrapper for skeleton information
osceleton.getSkeletons();
If you would like to contribute code to OSCeletonWrapper you can do so through GitHub by forking the repository and sending a pull request.
You may file an issue if you find bugs or would like to add a new feature.
- Cameron Ketcham - http://skyra.github.io