(self, data_root, seq_name, data_type)
| 9 | class Evaluator(object): |
| 10 | |
| 11 | def __init__(self, data_root, seq_name, data_type): |
| 12 | self.data_root = data_root |
| 13 | self.seq_name = seq_name |
| 14 | self.data_type = data_type |
| 15 | |
| 16 | self.load_annotations() |
| 17 | self.reset_accumulator() |
| 18 | |
| 19 | def load_annotations(self): |
| 20 | assert self.data_type == 'mot' |
nothing calls this directly
no test coverage detected