-
Notifications
You must be signed in to change notification settings - Fork 713
Expand file tree
/
Copy pathutils.py
More file actions
184 lines (156 loc) · 6.84 KB
/
utils.py
File metadata and controls
184 lines (156 loc) · 6.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# nuScenes dev-kit.
# Code written by Holger Caesar, 2019.
import unittest
import warnings
from typing import Dict, Optional
import numpy as np
try:
import motmetrics
from motmetrics.metrics import MetricsHost
except ModuleNotFoundError:
raise unittest.SkipTest('Skipping test as motmetrics was not found!')
from nuscenes.eval.tracking.data_classes import TrackingMetrics
from nuscenes.eval.tracking.metrics import (
faf,
longest_gap_duration,
mota_custom,
motar,
motp_custom,
num_fragmentations_custom,
track_initialization_duration,
)
def category_to_tracking_name(category_name: str) -> Optional[str]:
"""
Default label mapping from nuScenes to nuScenes tracking classes.
:param category_name: Generic nuScenes class.
:return: nuScenes tracking class.
"""
tracking_mapping = {
'vehicle.bicycle': 'bicycle',
'vehicle.bus.bendy': 'bus',
'vehicle.bus.rigid': 'bus',
'vehicle.car': 'car',
'vehicle.motorcycle': 'motorcycle',
'human.pedestrian.adult': 'pedestrian',
'human.pedestrian.child': 'pedestrian',
'human.pedestrian.construction_worker': 'pedestrian',
'human.pedestrian.police_officer': 'pedestrian',
'vehicle.trailer': 'trailer',
'vehicle.truck': 'truck'
}
if category_name in tracking_mapping:
return tracking_mapping[category_name]
else:
return None
def metric_name_to_print_format(metric_name) -> str:
"""
Get the standard print format (numerical precision) for each metric.
:param metric_name: The lowercase metric name.
:return: The print format.
"""
if metric_name in ['amota', 'amotp', 'motar', 'recall', 'mota', 'motp']:
print_format = '%.3f'
elif metric_name in ['tid', 'lgd']:
print_format = '%.2f'
elif metric_name in ['faf']:
print_format = '%.1f'
else:
print_format = '%d'
return print_format
def print_final_metrics(metrics: TrackingMetrics) -> None:
"""
Print metrics to stdout.
:param metrics: The output of evaluate().
"""
print('\n### Final results ###')
# Print per-class metrics.
metric_names = metrics.label_metrics.keys()
print('\nPer-class results:')
print('\t\t', end='')
print('\t'.join([m.upper() for m in metric_names]))
class_names = metrics.class_names
max_name_length = 7
for class_name in class_names:
print_class_name = class_name[:max_name_length].ljust(max_name_length + 1)
print('%s' % print_class_name, end='')
for metric_name in metric_names:
val = metrics.label_metrics[metric_name][class_name]
print_format = '%f' if np.isnan(val) else metric_name_to_print_format(metric_name)
print('\t%s' % (print_format % val), end='')
print()
# Print high-level metrics.
print('\nAggregated results:')
for metric_name in metric_names:
val = metrics.compute_metric(metric_name, 'all')
print_format = metric_name_to_print_format(metric_name)
print('%s\t%s' % (metric_name.upper(), print_format % val))
print('Eval time: %.1fs' % metrics.eval_time)
print()
def print_threshold_metrics(metrics: Dict[str, Dict[str, float]]) -> None:
"""
Print only a subset of the metrics for the current class and threshold.
:param metrics: A dictionary representation of the metrics.
"""
# Specify threshold name and metrics.
assert len(metrics['mota_custom'].keys()) == 1
threshold_str = list(metrics['mota_custom'].keys())[0]
motar_val = metrics['motar'][threshold_str]
motp = metrics['motp_custom'][threshold_str]
recall = metrics['recall'][threshold_str]
num_frames = metrics['num_frames'][threshold_str]
num_objects = metrics['num_objects'][threshold_str]
num_predictions = metrics['num_predictions'][threshold_str]
num_false_positives = metrics['num_false_positives'][threshold_str]
num_misses = metrics['num_misses'][threshold_str]
num_switches = metrics['num_switches'][threshold_str]
num_matches = metrics['num_matches'][threshold_str]
# Print.
print('%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s'
% ('\t', 'MOTAR', 'MOTP', 'Recall', 'Frames',
'GT', 'GT-Mtch', 'GT-Miss', 'GT-IDS',
'Pred', 'Pred-TP', 'Pred-FP', 'Pred-IDS',))
print('%s\t%.3f\t%.3f\t%.3f\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d'
% (threshold_str, motar_val, motp, recall, num_frames,
num_objects, num_matches, num_misses, num_switches,
num_predictions, num_matches, num_false_positives, num_switches))
print()
# Check metrics for consistency.
assert num_objects == num_matches + num_misses + num_switches
assert num_predictions == num_matches + num_false_positives + num_switches
def create_motmetrics() -> MetricsHost:
"""
Creates a MetricsHost and populates it with default and custom metrics.
It does not populate the global metrics which are more time consuming.
:return The initialized MetricsHost object with default MOT metrics.
"""
# Create new metrics host object.
mh = MetricsHost()
# Suppress deprecation warning from py-motmetrics.
warnings.filterwarnings('ignore', category=DeprecationWarning)
# Register standard metrics.
fields = [
'num_frames', 'obj_frequencies', 'num_matches', 'num_switches', 'num_false_positives', 'num_misses',
'num_detections', 'num_objects', 'pred_frequencies', 'num_predictions', 'mostly_tracked', 'mostly_lost',
'num_fragmentations', 'motp', 'mota', 'precision', 'recall', 'track_ratios'
]
for field in fields:
mh.register(getattr(motmetrics.metrics, field), formatter='{:d}'.format)
# Reenable deprecation warning.
warnings.filterwarnings('default', category=DeprecationWarning)
# Register custom metrics.
# Specify all inputs to avoid errors incompatibility between type hints and py-motmetric's introspection.
mh.register(motar, ['num_matches', 'num_misses', 'num_switches', 'num_false_positives', 'num_objects'],
formatter='{:.2%}'.format, name='motar')
mh.register(mota_custom, ['num_misses', 'num_switches', 'num_false_positives', 'num_objects'],
formatter='{:.2%}'.format, name='mota_custom')
mh.register(motp_custom, ['num_detections'],
formatter='{:.2%}'.format, name='motp_custom')
mh.register(num_fragmentations_custom, ['obj_frequencies'],
formatter='{:.2%}'.format, name='num_fragmentations_custom')
mh.register(faf, ['num_false_positives', 'num_frames'],
formatter='{:.2%}'.format, name='faf')
mh.register(track_initialization_duration, ['obj_frequencies'],
formatter='{:.2%}'.format, name='tid')
mh.register(longest_gap_duration, ['obj_frequencies'],
formatter='{:.2%}'.format, name='lgd')
return mh