Get associated measurement history for trackerGNN?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ryan Fogle
am 16 Sep. 2021
Kommentiert: Ryan Fogle
am 16 Sep. 2021
Hi,
I am using trackerGNN to form tracks on simulated measurements. At each time instant, the tracker() function returns a objectTrack. Is there a way to get the measurement that was associated to update the track (i.e., the measurement index that was used to update the track position and form the objectTrack)?
Thanks
0 Kommentare
Akzeptierte Antwort
Elad Kivelevitch
am 16 Sep. 2021
Yes.
You can use
[confirmedTracks, ~, ~, info] = tracker(detections, time);
Then, in info, you can look for the field Assignments and find which track ID (first column) was assigned to which detection index (column 2).
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tracking and Sensor Fusion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!