Kinect.KinectManager.GetDepthImageHeight C# (CSharp) Méthode

GetDepthImageHeight() public méthode

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