CURELab.SignLanguage.HandDetector.KinectSDKController.SkeletonPointToScreen C# (CSharp) Method

SkeletonPointToScreen() private method

private SkeletonPointToScreen ( Microsoft.Kinect.SkeletonPoint skelpoint ) : Point
skelpoint Microsoft.Kinect.SkeletonPoint
return System.Drawing.Point
        private System.Drawing.Point SkeletonPointToScreen(SkeletonPoint skelpoint)
        {
            // Convert point to depth space.
            // We are not using depth directly, but we do want the points in our 640x480 output resolution.
            DepthImagePoint depthPoint = this.sensor.CoordinateMapper.MapSkeletonPointToDepthPoint(skelpoint, DepthImageFormat.Resolution640x480Fps30);
            return new System.Drawing.Point(depthPoint.X, depthPoint.Y);
        }