-
Notifications
You must be signed in to change notification settings - Fork 597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Support multi-class tracking in ByteTrack #548
Conversation
Codecov Report
@@ Coverage Diff @@
## master #548 +/- ##
==========================================
+ Coverage 73.08% 73.16% +0.07%
==========================================
Files 129 129
Lines 8019 8065 +46
Branches 1562 1563 +1
==========================================
+ Hits 5861 5901 +40
- Misses 1664 1670 +6
Partials 494 494
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Does the 'multi-class supporting` be the same as ByteTrack in the manuscript?
- It is better to verify the inference performance of ByteTrack in MOT17-half-train using the pertrained weights. It should achieve 67.7 HOTA
|
Do you mean that we can achieve 67.7 HOTA before this pr, while achieve 67.1 HOTA after this pr? |
I meant: when I ran the original code (before this PR), it achieved HOTA=67.1. After PR, it is still 67.1. I didn't ever reproduce the reported 67.7HOTA on my machine at the very beginning. |
I'll check it later since the bytetracker is not changed. |
using mmdet=2.19.1 and mmtrack=0.13.0 we can achieve 67.7 HOTA. |
* add multi-class support in ByteTrack * remove duplicated <label>
add multi-class multi-object tracking support in ByteTrack based on the
labels
segments given in detections.It would be trivial to extend this feature to other trackers.