Kinect.KinectManager.GetColorImageHeight C# (CSharp) Method

GetColorImageHeight() public method

Gets the height of the color image, returned by the sensor.
public GetColorImageHeight ( ) : int
return int
        public int GetColorImageHeight()
        {
            return sensorData != null ? sensorData.colorImageHeight : 0;
        }
KinectManager