Kinect.KinectManager.GetRawBodyIndexMap C# (CSharp) Method

GetRawBodyIndexMap() public method

Gets the raw body index data, if ComputeUserMap is true.
public GetRawBodyIndexMap ( ) : byte[]
return byte[]
        public byte[] GetRawBodyIndexMap()
        {
            return sensorData != null ? sensorData.bodyIndexImage : null;
        }
KinectManager