Kinect.KinectManager.GetRawDepthMap C# (CSharp) 메소드

GetRawDepthMap() 공개 메소드

Gets the raw depth data, if ComputeUserMap is true.
public GetRawDepthMap ( ) : ushort[]
리턴 ushort[]
        public ushort[] GetRawDepthMap()
        {
            return sensorData != null ? sensorData.depthImage : null;
        }
KinectManager