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

Method __init__

deeplabcut/core/trackingutils.py:614–619  ·  view source on GitHub ↗
(self, max_age, min_hits, iou_threshold)

Source from the content-addressed store, hash-verified

612
613class 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

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected