Kinect.KinectManager.GetDepthImageHeight C# (CSharp) Метод

GetDepthImageHeight() публичный Метод

Gets the height of the depth image, returned by the sensor.
public GetDepthImageHeight ( ) : int
Результат int
        public int GetDepthImageHeight()
        {
            return sensorData != null ? sensorData.depthImageHeight : 0;
        }
KinectManager