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

Method __init__

deeplabcut/core/trackingutils.py:268–275  ·  view source on GitHub ↗
(self, params)

Source from the content-addressed store, hash-verified

266
267class EllipseTracker(BaseTracker):
268 def __init__(self, params):
269 super().__init__(dim=5, dim_z=5)
270 self.kf.R[2:, 2:] *= 10.0
271 # High uncertainty to the unobservable initial velocities
272 self.kf.P[5:, 5:] *= 1000.0
273 self.kf.P *= 10.0
274 self.kf.Q[5:, 5:] *= 0.01
275 self.state = params
276
277 @BaseTracker.state.setter
278 def state(self, params):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected