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