diff --git a/configs/datasets/mot.yml b/configs/datasets/mot.yml index 26b30c00be486b22f3e37ef824a382ce1a2d614d..e26919566028e0ff511c2e43400aee69cf8418d5 100644 --- a/configs/datasets/mot.yml +++ b/configs/datasets/mot.yml @@ -13,25 +13,15 @@ MOTDataZoo: { 'demo': ['MOT16-02'], } +# for MOT training TrainDataset: !MOTDataSet dataset_dir: dataset/mot image_lists: ['mot17.train', 'caltech.all', 'cuhksysu.train', 'prw.train', 'citypersons.train', 'eth.train'] data_fields: ['image', 'gt_bbox', 'gt_class', 'gt_ide'] -# for detection or reid evaluation, no use in MOT evaluation -EvalDataset: - !MOTDataSet - dataset_dir: dataset/mot - image_lists: ['citypersons.val', 'caltech.val'] # for detection evaluation - # image_lists: ['caltech.10k.val', 'cuhksysu.val', 'prw.val'] # for reid evaluation - data_fields: ['image', 'gt_bbox', 'gt_class', 'gt_ide'] - -# for detection inference, no use in MOT inference -TestDataset: - !ImageFolder - dataset_dir: dataset/mot - +# for MOT evaluation +# If you want to change the MOT evaluation dataset, please modify 'task' and 'data_root' EvalMOTDataset: !MOTImageFolder task: MOT16_train @@ -39,7 +29,22 @@ EvalMOTDataset: data_root: MOT16/images/train keep_ori_im: False # set True if save visualization images or video +# for MOT video inference TestMOTDataset: !MOTVideoDataset dataset_dir: dataset/mot keep_ori_im: True # set True if save visualization images or video + + +# for detection or reid evaluation, following the JDE paper, but no use in MOT evaluation +EvalDataset: + !MOTDataSet + dataset_dir: dataset/mot + image_lists: ['citypersons.val', 'caltech.val'] # for detection evaluation + # image_lists: ['caltech.10k.val', 'cuhksysu.val', 'prw.val'] # for reid evaluation + data_fields: ['image', 'gt_bbox', 'gt_class', 'gt_ide'] + +# for detection inference, no use in MOT inference +TestDataset: + !ImageFolder + dataset_dir: dataset/mot diff --git a/configs/mot/README.md b/configs/mot/README.md index 92810124b12bc0b90ba8cd500f9e3283de5dc49d..ba4d78b52fd30febd0dfeee234c51c78ab25f2fe 100644 --- a/configs/mot/README.md +++ b/configs/mot/README.md @@ -244,13 +244,6 @@ CUDA_VISIBLE_DEVICES=0 python tools/infer_mot.py -c configs/mot/fairmot/fairmot_ ## Citations ``` -@article{wang2019towards, - title={Towards Real-Time Multi-Object Tracking}, - author={Wang, Zhongdao and Zheng, Liang and Liu, Yixuan and Wang, Shengjin}, - journal={arXiv preprint arXiv:1909.12605}, - year={2019} -} - @inproceedings{Wojke2017simple, title={Simple Online and Realtime Tracking with a Deep Association Metric}, author={Wojke, Nicolai and Bewley, Alex and Paulus, Dietrich}, @@ -277,4 +270,11 @@ CUDA_VISIBLE_DEVICES=0 python tools/infer_mot.py -c configs/mot/fairmot/fairmot_ journal={arXiv preprint arXiv:1909.12605}, year={2019} } + +@article{zhang2020fair, + title={FairMOT: On the Fairness of Detection and Re-Identification in Multiple Object Tracking}, + author={Zhang, Yifu and Wang, Chunyu and Wang, Xinggang and Zeng, Wenjun and Liu, Wenyu}, + journal={arXiv preprint arXiv:2004.01888}, + year={2020} +} ``` diff --git a/configs/mot/README_cn.md b/configs/mot/README_cn.md index c486ac51c86703305006c08b8988f4c3092c2cd4..27d3214a1182bbf7af3df3c8a8b726b1e3376d93 100644 --- a/configs/mot/README_cn.md +++ b/configs/mot/README_cn.md @@ -241,13 +241,6 @@ CUDA_VISIBLE_DEVICES=0 python tools/infer_mot.py -c configs/mot/fairmot/fairmot_ ## 引用 ``` -@article{wang2019towards, - title={Towards Real-Time Multi-Object Tracking}, - author={Wang, Zhongdao and Zheng, Liang and Liu, Yixuan and Wang, Shengjin}, - journal={arXiv preprint arXiv:1909.12605}, - year={2019} -} - @inproceedings{Wojke2017simple, title={Simple Online and Realtime Tracking with a Deep Association Metric}, author={Wojke, Nicolai and Bewley, Alex and Paulus, Dietrich}, @@ -274,4 +267,11 @@ CUDA_VISIBLE_DEVICES=0 python tools/infer_mot.py -c configs/mot/fairmot/fairmot_ journal={arXiv preprint arXiv:1909.12605}, year={2019} } + +@article{zhang2020fair, + title={FairMOT: On the Fairness of Detection and Re-Identification in Multiple Object Tracking}, + author={Zhang, Yifu and Wang, Chunyu and Wang, Xinggang and Zeng, Wenjun and Liu, Wenyu}, + journal={arXiv preprint arXiv:2004.01888}, + year={2020} +} ``` diff --git a/configs/mot/deepsort/README.md b/configs/mot/deepsort/README.md index b5e797883a965c8c61b2ca338092b005f35d4b7b..35ecae4656e9b57f908fe1ac39622b322780f0e0 100644 --- a/configs/mot/deepsort/README.md +++ b/configs/mot/deepsort/README.md @@ -1,6 +1,6 @@ English | [简体中文](README_cn.md) -# DeepSORT (Simple Online and Realtime Tracking with a Deep Association Metric) +# DeepSORT (Deep Cosine Metric Learning for Person Re-identification) ## Table of Contents - [Introduction](#Introduction) diff --git a/configs/mot/deepsort/README_cn.md b/configs/mot/deepsort/README_cn.md index d500011e4c5b9392edc4396f2a71d53ef0729733..6ef260f1e4efa4e046f9298b9e3f1231958b4f3b 100644 --- a/configs/mot/deepsort/README_cn.md +++ b/configs/mot/deepsort/README_cn.md @@ -1,6 +1,6 @@ 简体中文 | [English](README.md) -# DeepSORT +# DeepSORT (Deep Cosine Metric Learning for Person Re-identification) ## 内容 - [简介](#简介) diff --git a/configs/mot/fairmot/README_cn.md b/configs/mot/fairmot/README_cn.md index 0fa824a84ce07258ec2ee3842c1f620014c21cd2..bb2e92bfe942581c6df536667a63d6c39f41bd23 100644 --- a/configs/mot/fairmot/README_cn.md +++ b/configs/mot/fairmot/README_cn.md @@ -77,10 +77,10 @@ CUDA_VISIBLE_DEVICES=0 python tools/infer_mot.py -c configs/mot/fairmot/fairmot_ ## 引用 ``` -@article{wang2019towards, - title={Towards Real-Time Multi-Object Tracking}, - author={Wang, Zhongdao and Zheng, Liang and Liu, Yixuan and Wang, Shengjin}, - journal={arXiv preprint arXiv:1909.12605}, - year={2019} +@article{zhang2020fair, + title={FairMOT: On the Fairness of Detection and Re-Identification in Multiple Object Tracking}, + author={Zhang, Yifu and Wang, Chunyu and Wang, Xinggang and Zeng, Wenjun and Liu, Wenyu}, + journal={arXiv preprint arXiv:2004.01888}, + year={2020} } ``` diff --git a/configs/mot/jde/README.md b/configs/mot/jde/README.md index 8fdeeb95ffc20697954c3c1b4c930641cc933595..32e19ba72d96046081afa24abe68bf380f56cd03 100644 --- a/configs/mot/jde/README.md +++ b/configs/mot/jde/README.md @@ -1,6 +1,6 @@ English | [简体中文](README_cn.md) -# JDE (Joint Detection and Embedding) +# JDE (Towards Real-Time Multi-Object Tracking) ## Table of Contents - [Introduction](#Introduction) @@ -10,7 +10,7 @@ English | [简体中文](README_cn.md) ## Introduction -- [JDE](https://arxiv.org/abs/1909.12605) (Joint Detection and Embedding) learns the object detection task and appearance embedding task simutaneously in a shared neural network. And the detection results and the corresponding embeddings are also outputed at the same time. JDE original paper is based on an Anchor Base detector YOLOv3 , adding a new ReID branch to learn embeddings. The training process is constructed as a multi-task learning problem, taking into account both accuracy and speed. +- [JDE](https://arxiv.org/abs/1909.12605) (Joint Detection and Embedding) learns the object detection task and appearance embedding task simutaneously in a shared neural network. And the detection results and the corresponding embeddings are also outputed at the same time. JDE original paper is based on an Anchor Base detector YOLOv3, adding a new ReID branch to learn embeddings. The training process is constructed as a multi-task learning problem, taking into account both accuracy and speed.