Kinect.KinectManager.GetRawDepthMap C# (CSharp) Method

GetRawDepthMap() public method

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