MCPcopy Create free account
hub / github.com/FoundationVision/ByteTrack / __init__

Method __init__

tutorials/fairmot/byte_tracker.py:25–34  ·  view source on GitHub ↗
(self, tlwh, score)

Source from the content-addressed store, hash-verified

23class STrack(BaseTrack):
24 shared_kalman = KalmanFilter()
25 def __init__(self, tlwh, score):
26
27 # wait activate
28 self._tlwh = np.asarray(tlwh, dtype=np.float)
29 self.kalman_filter = None
30 self.mean, self.covariance = None, None
31 self.is_activated = False
32
33 self.score = score
34 self.tracklet_len = 0
35
36 def predict(self):
37 mean_state = self.mean.copy()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected