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

GetTrackedBodyIndices() public méthode

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