Kinect.KinectManager.GetDepthImageWidth C# (CSharp) Method

GetDepthImageWidth() public method

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