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

GetDepthImageWidth() public méthode

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