Skip to content

Commit

Permalink
remove filter_pub_det
Browse files Browse the repository at this point in the history
  • Loading branch information
zyayoung committed May 12, 2022
1 parent 4bc797f commit 5d2fa5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ This repository is an official implementation of the paper [MOTR: End-to-End Mul
- (2022/02/09) Higher performance achieved by not clipping the bounding boxes inside the image.
- (2022/02/11) Add checkpoint support for training on RTX 2080ti.
- (2022/02/11) Report [DanceTrack](https://github.com/DanceTrack/DanceTrack) results and [scripts](configs/r50_motr_train_dance.sh).
- (2022/05/12) Higher performance achieved by removing the public detection filtering (filter_pub_det) trick.

## Main Results

### MOT17

| **Method** | **Dataset** | **Train Data** | **HOTA** | **DetA** | **AssA** | **MOTA** | **IDF1** | **IDS** | **URL** |
| :--------: | :---------: | :------------------: | :------: | :------: | :------: | :------: | :------: | :-----: | :-----------------------------------------------------------------------------------------: |
| MOTR | MOT17 | MOT17+CrowdHuman Val | 57.2 | 58.9 | 55.8 | 71.9 | 68.4 | 2115 | [model](https://drive.google.com/file/d/1K9AbtzTCBNsOD8LYA1k16kf4X0uJi8PC/view?usp=sharing) |
| MOTR | MOT17 | MOT17+CrowdHuman Val | 57.8 | 60.3 | 55.7 | 73.4 | 68.6 | 2439 | [model](https://drive.google.com/file/d/1K9AbtzTCBNsOD8LYA1k16kf4X0uJi8PC/view?usp=sharing) |

### DanceTrack

Expand Down Expand Up @@ -210,7 +211,7 @@ If you find MOTR useful in your research, please consider citing:
```bibtex
@article{zeng2021motr,
title={MOTR: End-to-End Multiple-Object Tracking with TRansformer},
author={Zeng, Fangao and Dong, Bin and Wang, Tiancai and Zhang, Xiangyu and Wei, Yichen},
author={Zeng, Fangao and Dong, Bin and Zhang, Yuang and Wang, Tiancai and Zhang, Xiangyu and Wei, Yichen},
journal={arXiv preprint arXiv:2105.03247},
year={2021}
}
Expand Down
4 changes: 2 additions & 2 deletions submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ def detect(self, prob_threshold=0.7, area_threshold=100):
frame_id=(i + 1),
bbox_xyxy=tracker_outputs[:, :4],
identities=tracker_outputs[:, 5])
filter_pub_det(os.path.join(self.predict_path, f'{self.seq_num}.txt'),
f'/data/Dataset/mot/MOT17/images/test/{self.seq_num}/det/det.txt')
# filter_pub_det(os.path.join(self.predict_path, f'{self.seq_num}.txt'),
# f'/data/Dataset/mot/MOT17/images/test/{self.seq_num}/det/det.txt')
print("totally {} dts {} occlusion dts".format(total_dts, total_occlusion_dts))


Expand Down

0 comments on commit 5d2fa5f

Please sign in to comment.