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

Method __init__

tutorials/qdtrack/byte_tracker.py:17–26  ·  view source on GitHub ↗
(self, tlwh, score)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected