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