Kinect.KinectManager.GetColorImageWidth C# (CSharp) Method

GetColorImageWidth() public method

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