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

Method __init__

deeplabcut/core/trackingutils.py:395–401  ·  view source on GitHub ↗
(self, max_age, min_hits, iou_threshold, sd=2)

Source from the content-addressed store, hash-verified

393
394class SORTEllipse(SORTBase):
395 def __init__(self, max_age, min_hits, iou_threshold, sd=2):
396 self.max_age = max_age
397 self.min_hits = min_hits
398 self.iou_threshold = iou_threshold
399 self.fitter = EllipseFitter(sd)
400 EllipseTracker.n_trackers = 0
401 super().__init__()
402
403 def track(self, poses, identities=None):
404 self.n_frames += 1

Callers

nothing calls this directly

Calls 2

EllipseFitterClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected