Kinect.KinectManager.GetDepthImageHeight C# (CSharp) Method

GetDepthImageHeight() public method

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