Mark this track as missed (no association at the current time step).
(self)
| 137 | self.state = TrackState.Confirmed |
| 138 | |
| 139 | def mark_missed(self): |
| 140 | """Mark this track as missed (no association at the current time step). |
| 141 | """ |
| 142 | if self.state == TrackState.Tentative: |
| 143 | self.state = TrackState.Deleted |
| 144 | elif self.time_since_update > self._max_age: |
| 145 | self.state = TrackState.Deleted |
| 146 | |
| 147 | def is_tentative(self): |
| 148 | """Returns True if this track is tentative (unconfirmed). |
no outgoing calls
no test coverage detected