Kinect.KinectManager.GetTrackedBodyIndices C# (CSharp) 메소드

GetTrackedBodyIndices() 공개 메소드

Gets the list of tracked body indices.
public GetTrackedBodyIndices ( ) : List
리턴 List
        public List<int> GetTrackedBodyIndices()
        {
            List<int> alBodyIndices = new List<int>(dictUserIdToIndex.Values);
            return alBodyIndices;
        }
KinectManager