Kinect.KinectManager.GetTrackedBodyIndices C# (CSharp) Method

GetTrackedBodyIndices() public method

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