Method
__init__
(self, n_bodyparts, max_age=20, min_hits=3, oks_threshold=0.5)
Source from the content-addressed store, hash-verified
| 495 | |
| 496 | class SORTSkeleton(SORTBase): |
| 497 | def __init__(self, n_bodyparts, max_age=20, min_hits=3, oks_threshold=0.5): |
| 498 | self.n_bodyparts = n_bodyparts |
| 499 | self.max_age = max_age |
| 500 | self.min_hits = min_hits |
| 501 | self.oks_threshold = oks_threshold |
| 502 | SkeletonTracker.n_trackers = 0 |
| 503 | super().__init__() |
| 504 | |
| 505 | @staticmethod |
| 506 | def weighted_hausdorff(x, y): |
Callers
nothing calls this directly
Tested by
no test coverage detected