MCPcopy Create free account
hub / github.com/FoundationVision/ByteTrack / read_results

Function read_results

yolox/evaluators/evaluation.py:117–123  ·  view source on GitHub ↗
(filename, data_type: str, is_gt=False, is_ignore=False)

Source from the content-addressed store, hash-verified

115
116
117def read_results(filename, data_type: str, is_gt=False, is_ignore=False):
118 if data_type in ('mot', 'lab'):
119 read_fun = read_mot_results
120 else:
121 raise ValueError('Unknown data type: {}'.format(data_type))
122
123 return read_fun(filename, is_gt, is_ignore)
124
125
126"""

Callers 2

load_annotationsMethod · 0.70
eval_fileMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected