MCPcopy Create free account
hub / github.com/DeepLabCut/DeepLabCut / __init__

Method __init__

deeplabcut/core/trackingutils.py:497–503  ·  view source on GitHub ↗
(self, n_bodyparts, max_age=20, min_hits=3, oks_threshold=0.5)

Source from the content-addressed store, hash-verified

495
496class 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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected