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

Method mark_missed

yolox/deepsort_tracker/track.py:139–145  ·  view source on GitHub ↗

Mark this track as missed (no association at the current time step).

(self)

Source from the content-addressed store, hash-verified

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).

Callers 2

increment_agesMethod · 0.80
updateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected