Filter löschen
Filter löschen

How to set source index of trackergnn?

1 Ansicht (letzte 30 Tage)
Ryan Fogle
Ryan Fogle am 16 Sep. 2021
Kommentiert: Ryan Fogle am 16 Sep. 2021
Hi,
I am using several trackerGNN to form tracks on simulated measurements. Each trackerGNN initialization corresponds to a new sensor. That is,
for jj=1:nSensors
sensors(jj).tracker = trackerGNN('FilterInitializationFcn',@initcvkf,'ConfirmationThreshold',[4 5],'DeletionThreshold',10);
end
I would like to then fuse these tracks across the sensors.
nSensors = nCombine;
internalSource1 = fuserSourceConfiguration(1,'IsInternalSource',true);
internalSource2 = fuserSourceConfiguration(2,'IsInternalSource',false);
fuser = trackFuser('MaxNumSources',2,'SourceConfigurations',{internalSource1;internalSource2},'StateFusion','Cross');
fusedTracks = fuser(localTracks,ii);
To do this, I need to have a defined SourceIndex for each track point, I think. How do I set this SourceIndex? I would like to do it initially such as when I call trackerGNN but I cant seem to get that to work.
Thanks

Akzeptierte Antwort

Prashant Arora
Prashant Arora am 16 Sep. 2021
Hi Ryan,
trackerGNN has "TrackerIndex" property that controls the SourceIndex of the output tracks.
See the property documentation below for more information.
Thanks,
Prashant

Weitere Antworten (0)

Produkte


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by