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
I have searched the Yolo Tracking issues and found no similar bug report.
Question
I cloned the repository, installed all requirements, and thereafter ran python tracking/track.py and started running into the above error.
What's strange is that I'm not even using botsort, though it keeps reverting to that tracker even if I specify a different one, like I did in the screenshot by changing the setting of --tracking-method to "bytetrack".
OS: Ubuntu 20.04.6, python version 3.11.10, ultralytics version 8.3.32, boxmot installed from master with pip install -e .
The text was updated successfully, but these errors were encountered:
I found a workaround by adding the line to the yolo.track call specifying the tracker parameter, shown below. It turns out that ultralytics defaults to the botsort tracker if not otherwise specified. It does this via a callback that gets run right after the first prediction.
My workaround didn't solve the problem though. See below. Now it just tells me that BYTETracker has no plot_results method instead...
Search before asking
Question
I cloned the repository, installed all requirements, and thereafter ran
python tracking/track.py
and started running into the above error.What's strange is that I'm not even using botsort, though it keeps reverting to that tracker even if I specify a different one, like I did in the screenshot by changing the setting of
--tracking-method
to "bytetrack".OS: Ubuntu 20.04.6, python version 3.11.10, ultralytics version 8.3.32, boxmot installed from master with
pip install -e .
The text was updated successfully, but these errors were encountered: