Closed didrikmunther closed 3 months ago
π Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs. Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!
π Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs. Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!
Search before asking
Yolo Tracking Component
Tracking
Bug
Problem
Here, we see
self.observations = dict()
.For every loop an object stays in the picture, we are adding a new element to this dict
The memory will eventually run out.
Suggested improvement:
We are already storing previous observations in a dequeue. I suggest using this dequeue instead of the
observations
dict here, here, and here.We need to ensure
max_obs > delta_t
for this to work.Environment
Boxmot commit b54b584
Minimal Reproducible Example