Revision: 6226 http://sourceforge.net/p/smartbody/code/6226 Author: arishapiro Date: 2015-10-12 18:59:58 +0000 (Mon, 12 Oct 2015) Log Message: ----------- Added SBRealtimeManager; a service that monitors realtime data (e.g. from the Kinect, RealSense, motion capture, or similar).
Usage: rtm = scene.getRealtimeManager() rtm = scene.getRealtimeManager() v = rtm.getData("somedata") # returns data as a string or to convert to a double: d = rtm.getDataDouble("somedata") or to convert to a vector: v = rtm.getDataVec("somedata") or to convert to a quaternion: q = rtm.getDataQuat("somedata") or to convert to a matrix: m = rtm.getDataMat("somedata") Modified Paths: -------------- trunk/core/smartbody/SmartBody/SmartBody.vcxproj trunk/core/smartbody/SmartBody/SmartBody.vcxproj.filters trunk/core/smartbody/SmartBody/src/sb/SBCharacter.cpp trunk/core/smartbody/SmartBody/src/sb/SBPython.cpp trunk/core/smartbody/SmartBody/src/sb/SBPythonScene.cpp trunk/core/smartbody/SmartBody/src/sb/SBScene.cpp trunk/core/smartbody/SmartBody/src/sb/SBScene.h trunk/core/smartbody/SmartBody/src/sb/SBVersion.hpp trunk/core/smartbody/SmartBody/src/sbm/KinectProcessor.cpp trunk/core/smartbody/SmartBody/src/sbm/mcontrol_callbacks.cpp Added Paths: ----------- trunk/core/smartbody/SmartBody/src/sb/SBRealtimeManager.cpp trunk/core/smartbody/SmartBody/src/sb/SBRealtimeManager.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ _______________________________________________ Smartbody-svn mailing list Smartbody-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/smartbody-svn