You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The member variable removed_tracks defined in the class BYTETracker is not properly cleaned up, which can lead to memory growth and decreased code execution speed.
I suggest adding the following line at the end of the member function void BYTETracker::handle_lost_and_removed_tracks:
this->removed_tracks.clear();
The text was updated successfully, but these errors were encountered:
The member variable removed_tracks defined in the class BYTETracker is not properly cleaned up, which can lead to memory growth and decreased code execution speed.
I suggest adding the following line at the end of the member function void BYTETracker::handle_lost_and_removed_tracks:
this->removed_tracks.clear();
The text was updated successfully, but these errors were encountered: