|
OpenNI 1.3.2
|
#include <XnCppWrapper.h>

Allows access to Pose Detection capability functions. see Pose Detection Capability for additional details.
| typedef void(* xn::PoseDetectionCapability::PoseDetection)(PoseDetectionCapability &pose, const XnChar *strPose, XnUserID user, void *pCookie) |
Callback for indication that a specific user has entered a pose, or left it.
| pose | [in] The node that raised the event. |
| strPose | [in] The pose that is relevant to the callback. |
| user | [in] The id of the user that entered the pose or left it. |
| pCookie | [in] A user-provided cookie that was given when registering to this event. |
| typedef void(* xn::PoseDetectionCapability::PoseInProgress)(PoseDetectionCapability &pose, const XnChar *strPose, XnUserID user, XnPoseDetectionStatus poseError, void *pCookie) |
Callback for indication of the current status of pose detection for a user
| pose | [in] The node that raised the event. |
| strPose | [in] The pose that is relevant to the callback. |
| user | [in] The id of the user that entered the pose or left it. |
| poseError | [in] The current status of the pose detection |
| pCookie | [in] A user-provided cookie that was given when registering to this event. |
| xn::PoseDetectionCapability::PoseDetectionCapability | ( | XnNodeHandle | hNode | ) | [inline] |
Ctor
| hNode | [in] Node handle |
| xn::PoseDetectionCapability::PoseDetectionCapability | ( | const NodeWrapper & | node | ) | [inline] |
| XnStatus xn::PoseDetectionCapability::GetAllAvailablePoses | ( | XnChar ** | pstrPoses, |
| XnUInt32 | nNameLength, | ||
| XnUInt32 & | nPoses | ||
| ) | const [inline] |
Get the names of the supported poses.
For full details and usage, see xnGetAvailablePoses| XnStatus xn::PoseDetectionCapability::GetAvailablePoses | ( | XnChar ** | pstrPoses, |
| XnUInt32 & | nPoses | ||
| ) | const [inline] |
Get the names of the supported poses.
For full details and usage, see xnGetAvailablePoses| XnUInt32 xn::PoseDetectionCapability::GetNumberOfPoses | ( | ) | const [inline] |
Get the number of the supported poses.
For full details and usage, see xnGetNumberOfPoses| XnStatus xn::PoseDetectionCapability::RegisterToOutOfPose | ( | PoseDetection | handler, |
| void * | pCookie, | ||
| XnCallbackHandle & | hCallback | ||
| ) | [inline] |
Register to callback when a use is no longer in pose.
For full details and usage, see xnRegisterToOutOfPose| XnStatus xn::PoseDetectionCapability::RegisterToPoseCallbacks | ( | PoseDetection | PoseStartCB, |
| PoseDetection | PoseEndCB, | ||
| void * | pCookie, | ||
| XnCallbackHandle & | hCallback | ||
| ) | [inline] |
Register to callbacks for pose events.
For full details and usage, see xnRegisterToPoseCallbacks| XnStatus xn::PoseDetectionCapability::RegisterToPoseDetected | ( | PoseDetection | handler, |
| void * | pCookie, | ||
| XnCallbackHandle & | hCallback | ||
| ) | [inline] |
Register to callback when a user is in pose.
For full details and usage, see xnRegisterToPoseDetected| XnStatus xn::PoseDetectionCapability::RegisterToPoseInProgress | ( | PoseInProgress | handler, |
| void * | pCookie, | ||
| XnCallbackHandle & | hCallback | ||
| ) | [inline] |
Register to callback for status when pose is detected.
For full details and usage, see xnRegisterToPoseDetectionInProgress| XnStatus xn::PoseDetectionCapability::StartPoseDetection | ( | const XnChar * | strPose, |
| XnUserID | user | ||
| ) | [inline] |
Start detection of a specific pose for a specific user.
For full details and usage, see xnStartPoseDetection| XnStatus xn::PoseDetectionCapability::StopPoseDetection | ( | XnUserID | user | ) | [inline] |
Stop detection of poses for a specific user.
For full details and usage, see xnStopPoseDetection| void xn::PoseDetectionCapability::UnregisterFromOutOfPose | ( | XnCallbackHandle | hCallback | ) | [inline] |
Unregister from out of pose callback.
For full details and usage, see xnUnregisterFromOutOfPose| void xn::PoseDetectionCapability::UnregisterFromPoseCallbacks | ( | XnCallbackHandle | hCallback | ) | [inline] |
Unregister from calibration callbacks.
For full details and usage, see xnUnregisterCalibrationCallbacks| void xn::PoseDetectionCapability::UnregisterFromPoseDetected | ( | XnCallbackHandle | hCallback | ) | [inline] |
Unregister from pose detected callback.
For full details and usage, see xnUnregisterFromPoseDetected| void xn::PoseDetectionCapability::UnregisterFromPoseInProgress | ( | XnCallbackHandle | hCallback | ) | [inline] |
Unregister from pose status callback.
For full details and usage, see xnUnregisterFromPoseDetectionInProgress
1.7.6.1