Skip to content

Commit

Permalink
Bug fix in tracker.py [issue #48]
Browse files Browse the repository at this point in the history
  • Loading branch information
adipandas committed Oct 10, 2023
1 parent 3aa4de1 commit c9ba8e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions motrackers/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ def _get_tracks(tracks):
"""

outputs = []
for trackid, track in tracks.items():
if not track.lost:
outputs.append(track.output())
for _, track in tracks.items():
# if not track.lost:
# outputs.append(track.output())
outputs.append(track.output())
return outputs

@staticmethod
Expand Down

0 comments on commit c9ba8e2

Please sign in to comment.