(self, max_age=1, min_hits=3, iou_threshold=0.3)
| 166 | |
| 167 | class MOTR(object): |
| 168 | def __init__(self, max_age=1, min_hits=3, iou_threshold=0.3): |
| 169 | self.tracker = BYTETracker() |
| 170 | |
| 171 | def update(self, dt_instances: Instances): |
| 172 | ret = [] |
nothing calls this directly
no test coverage detected