abewley / sort

Simple, online, and realtime tracking of multiple objects in a video sequence.
GNU General Public License v3.0
3.82k stars 1.07k forks source link

does evaluation code work correctly? #86

Open batman-far opened 4 years ago

batman-far commented 4 years ago

In function "def read_mot_results(filename, is_gt, is_ignore):", there are these lines of codes:

elif is_ignore:
                    if 'MOT16-' in filename or 'MOT17-' in filename:
                        label = int(float(linelist[7]))
                        vis_ratio = float(linelist[8])
                        if label not in ignore_labels and vis_ratio >= 0:
                            continue

It says ignore ground truths that are not visible. Is this assumption correct? Do other people use this method?