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

Method __init__

tutorials/centertrack/byte_tracker.py:15–24  ·  view source on GitHub ↗
(self, tlwh, score)

Source from the content-addressed store, hash-verified

13class STrack(BaseTrack):
14 shared_kalman = KalmanFilter()
15 def __init__(self, tlwh, score):
16
17 # wait activate
18 self._tlwh = np.asarray(tlwh, dtype=np.float)
19 self.kalman_filter = None
20 self.mean, self.covariance = None, None
21 self.is_activated = False
22
23 self.score = score
24 self.tracklet_len = 0
25
26 def predict(self):
27 mean_state = self.mean.copy()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected