(self, max_age, min_hits, iou_threshold)
| 612 | |
| 613 | class SORTBox(SORTBase): |
| 614 | def __init__(self, max_age, min_hits, iou_threshold): |
| 615 | self.max_age = max_age |
| 616 | self.min_hits = min_hits |
| 617 | self.iou_threshold = iou_threshold |
| 618 | BoxTracker.n_trackers = 0 |
| 619 | super().__init__() |
| 620 | |
| 621 | def track(self, dets): |
| 622 | self.n_frames += 1 |