Borrar filtros
Borrar filtros

assignDetectionsToTracks with parameter of costOfNonAssignment

2 visualizaciones (últimos 30 días)
Haider Ali
Haider Ali el 20 de Oct. de 2016
Comentada: Horst Steuer el 16 de Mayo de 2018
Hi,
I am working on multiobject tracking and using assignDetectionsToTracks for Hungarian assignment. I am having problems with the parameter of costOfNonAssignment. Fro example, consider the following costMatrix:
costMatrix = [1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16]
Assigning the detections to tracks with costOfNonAssignment = 9:
[matches, unassignedTracks, unassignedDetections] = assignDetectionsToTracks(costMatrix, 9)
The output is:
matches =
4 1
3 2
2 3
1 4
All the tracks have been assigned irrespective of my parameter of costOfNonAssignment = 9. For example, the match (4, 1) has a cost of 13 and match (3, 2) has a cost of 10 which are both greater than my parameter of costOfNonAssignment.
Is this assignment correct? Should the last two tracks have not been assigned as there is no cost value in their rows which is less than my parameter of costOfNonAssignment?
Thank you.
  2 comentarios
Daniel Lyddy
Daniel Lyddy el 3 de Nov. de 2016
I've been looking inside the source code for this function, and the way that MathWorks has coded up the internal getPaddedCost() function has me scratching my head, too. It looks like the padded tracks (rows) and detections (columns) have one and only one chance to latch on to a "real" detection or track, respectively.
Anyway, what you describe is exactly the way I thought it would work, but, after looking at the diagrams in the help documentation and that internal getPaddedCost() function code, that is definitely not the way it's coded.
Horst Steuer
Horst Steuer el 16 de Mayo de 2018
I believe costOfNonAssignment is being incured twice in your example. You have an observation and don't assign it to a track: cost 9. You also have a track and do not assign an observation: cost 9. So combined it will cost 18, while your cost of assigning a observation to a track is at a maximum of 16. You might consider using assignDetectionsToTracks(costMatrix, unassignedTrackCost,unassignedDetectionCost) instead and set one of the latter costs to 0.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by