deep_sort icon indicating copy to clipboard operation
deep_sort copied to clipboard

Combine iou and appearance features

Open Mr-Akbari opened this issue 3 years ago • 3 comments

Hello Thanks for sharing your work. I want to concatenate iou distance and appearance distance in a weighted sum way, in first step association.

I done it by editing "tracker.py" : # Associate confirmed tracks using appearance features. matches_a, unmatched_tracks_a, unmatched_detections = linear_assignment.matching_cascade( lambda * gated_metric + (1-lambda)* iou_matching.iou_cost, self.metric.matching_threshold, self.max_age, self.tracks, detections, confirmed_tracks)

But it is not working. I really appreciate it if you answer these questions. Thanks very much.

Mr-Akbari avatar Oct 22 '22 06:10 Mr-Akbari

Any update on this? I was looking for the line where weighted sum of the Mahalanobis and Appearance based distance metric is taken. My video gets jammed periodically and the Mahalanobis distance metric thinks new object has entered. I want to give it less weight. Where did you find this line? Or did you write it yourself?

Hello Thanks for sharing your work. I want to concatenate iou distance and appearance distance in a weighted sum way, in first step association.

I done it by editing "tracker.py" : # Associate confirmed tracks using appearance features. matches_a, unmatched_tracks_a, unmatched_detections = linear_assignment.matching_cascade( lambda * gated_metric + (1-lambda)* iou_matching.iou_cost, self.metric.matching_threshold, self.max_age, self.tracks, detections, confirmed_tracks)

But it is not working. I really appreciate it if you answer these questions. Thanks very much.

vemshari27 avatar Oct 24 '23 08:10 vemshari27

Any update on this? I was looking for the line where weighted sum of the Mahalanobis and Appearance based distance metric is taken. My video gets jammed periodically and the Mahalanobis distance metric thinks new object has entered. I want to give it less weight. Where did you find this line? Or did you write it yourself?

Hello Thanks for sharing your work. I want to concatenate iou distance and appearance distance in a weighted sum way, in first step association. I done it by editing "tracker.py" : # Associate confirmed tracks using appearance features. matches_a, unmatched_tracks_a, unmatched_detections = linear_assignment.matching_cascade( lambda * gated_metric + (1-lambda)* iou_matching.iou_cost, self.metric.matching_threshold, self.max_age, self.tracks, detections, confirmed_tracks) But it is not working. I really appreciate it if you answer these questions. Thanks very much.

I write it myself. Any update on this?

Mr-Akbari avatar Feb 18 '24 05:02 Mr-Akbari