-
Notifications
You must be signed in to change notification settings - Fork 209
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
Support Single-lens MOT #258
Conversation
requirements/runtime.txt
Outdated
@@ -19,6 +19,7 @@ pycocotools | |||
pytorch_metric_learning>=0.9.89 | |||
rapidfuzz | |||
scikit-image | |||
seaborn |
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.
这是什么依赖包?
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.
utils.py里面用到的
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.
mot专用的话放到optional.txt中,import也放到接口内
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.
done
requirements/runtime.txt
Outdated
@@ -19,6 +19,7 @@ pycocotools | |||
pytorch_metric_learning>=0.9.89 | |||
rapidfuzz | |||
scikit-image | |||
seaborn |
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.
mot专用的话放到optional.txt中,import也放到接口内
@@ -55,6 +57,50 @@ def test_fcos(self): | |||
[189.96198, 108.948654, 297.10025, 154.80592]]), | |||
decimal=1) | |||
|
|||
# tracker = BYTETracker( |
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.
为啥注释掉?
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.
咱测试的那台机器安装不了lap包,环境有lap包可以跑通
Motivation
Support Single-lens MOT.
Modification