Esempio n. 1
0
        private void InternalPoseDetectionInProgress(IntPtr hNode, string pose, UserID id, PoseDetectionStatus status, IntPtr pCookie)
        {
            EventHandler <PoseInProgressEventArgs> handlers = this.poseDetectionInProgressEvent;

            if (handlers != null)
            {
                handlers(this.node, new PoseInProgressEventArgs(pose, id, status));
            }
        }
Esempio n. 2
0
 public PoseInProgressEventArgs(string pose, UserID id, PoseDetectionStatus status)
 {
     this.pose   = pose;
     this.id     = id;
     this.status = status;
 }
 public PoseInProgressEventArgs(string pose, UserID id, PoseDetectionStatus status)
 {
     this.pose = pose;
     this.id = id;
     this.status = status;
 }
Esempio n. 4
0
 public static extern XnStatus xnGetPoseStatus(XnNodeHandle hInstance, XnUserID userID, string poseName, out XnUInt64 poseTime, out PoseDetectionStatus eStatus,out PoseDetectionState eState);
 private void InternalPoseDetectionInProgress(IntPtr hNode, string pose, UserID id, PoseDetectionStatus status, IntPtr pCookie)
 {
     EventHandler<PoseInProgressEventArgs> handlers = this.poseDetectionInProgressEvent;
     if (handlers != null)
         handlers(this.node, new PoseInProgressEventArgs(pose, id, status));
 }