From 58ca506ccc7da9473598946adc7637146a4385de Mon Sep 17 00:00:00 2001 From: nemonameless Date: Mon, 5 Jul 2021 02:15:11 +0000 Subject: [PATCH] fix read_mot_results --- ppdet/metrics/mot_metrics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ppdet/metrics/mot_metrics.py b/ppdet/metrics/mot_metrics.py index e1bc8b93b..2b918c542 100644 --- a/ppdet/metrics/mot_metrics.py +++ b/ppdet/metrics/mot_metrics.py @@ -48,14 +48,14 @@ def read_mot_results(filename, is_gt=False, is_ignore=False): box_size = float(linelist[4]) * float(linelist[5]) if is_gt: - if 'MOT16-' in filename or 'MOT17-' in filename: + if 'MOT16-' in filename or 'MOT17-' in filename or 'MOT15-' in filename or 'MOT20-' in filename: label = int(float(linelist[7])) mark = int(float(linelist[6])) if mark == 0 or label not in valid_labels: continue score = 1 elif is_ignore: - if 'MOT16-' in filename or 'MOT17-' in filename: + if 'MOT16-' in filename or 'MOT17-' in filename or 'MOT15-' in filename or 'MOT20-' in filename: label = int(float(linelist[7])) vis_ratio = float(linelist[8]) if label not in ignore_labels and vis_ratio >= 0: -- GitLab