OpenMMLab Video Perception Toolbox. It supports Video Object Detection (VID), Multiple Object Tracking (MOT), Single Object Tracking (SOT), Video Instance Segmentation (VIS) with a unified framework.
Hi, Thanks for your great work.
It's my first time to use the open-mmlab project.
I'm trying to implement a customized model based on QDTrack and train it with BDD100K dataset.
I want to change the detector from two-stage FasterRCNN to one-stage detector like yolox.
I have some questions when I trace the code of QDTrack:
When will the simple_test() be called? It looks like self.tracker only be used here.
Dose self.tracker play a role during training stage?
According to this reply, QuasiDenseTAOTracker can be used to train multi-classes dataset like bdd100k, does it correct?
Hi, Thanks for your great work. It's my first time to use the open-mmlab project. I'm trying to implement a customized model based on QDTrack and train it with BDD100K dataset. I want to change the detector from two-stage FasterRCNN to one-stage detector like yolox.
I have some questions when I trace the code of QDTrack:
simple_test()
be called? It looks likeself.tracker
only be used here.self.tracker
play a role during training stage?QuasiDenseTAOTracker
can be used to train multi-classes dataset like bdd100k, does it correct?