py-motmetrics icon indicating copy to clipboard operation
py-motmetrics copied to clipboard

Default value of max_iou in the function iou_matrix

Open Sergigb opened this issue 4 years ago • 0 comments

Hi!

I have a little doubt about the iou_matrix function. According its description, max_iou is set to 0.5 by default (which is the value mentioned in the MOT16 challenge article if I'm not mistaken). However, the definition of the function actually defaults the value to 1:

def iou_matrix(objs, hyps, max_iou=1.):

Shouldn't the default value of max_iou be 0.5, since this is the described behaviour in the MOT16 challenge? Having it set to 1 makes any tiny overlap count as a match, which doesn't make much sense to me.

Thanks!

Sergigb avatar Feb 18 '21 20:02 Sergigb