(self, tlwh, score)
| 23 | class 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() |
nothing calls this directly
no outgoing calls
no test coverage detected