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

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

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