megvii-research / Iter-E2EDET

Official implementation of the paper "Progressive End-to-End Object Detection in Crowded Scenes"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Progressive End-to-End Object Detection in Crowded Scenes

License: MIT

Introduction

In this paper, we propose a new query-based detection framework for crowd detection. Previous query-based detectors suffer from two drawbacks: first, multiple predictions will be inferred for a single object, typically in crowded scenes; second, the performance saturates as the depth of the decoding stage increases. Benefiting from the nature of the one-to-one label assignment rule, we propose a progressive predicting method to address the above issues. Specifically, we first select accepted queries prone to generate true positive predictions, then refine the rest noisy queries according to the previously accepted predictions. Experiments show that our method can significantly boost the performance of query-based detectors in crowded scenes. Equipped with our approach, Sparse RCNN achieves 92.0% AP, 41.4% MR^−2 and 83.2% JI on the challenging CrowdHuman dataset, outperforming the box-based method MIP that specifies in handling crowded scenarios. Moreover, the proposed method, robust to crowdedness, can still obtain consistent improvements on moderately and slightly crowded datasets like CityPersons and COCO. The code for Iter deformable DETR implementation can also be found here.

Models

Experiments of different methods were conducted on CrowdHuman. All approaches take R-50 as the backbone.

Method #queries AP MR JI
CrowdDet -- 90.7 41.4 82.4
Sparse RCNN 500 90.7 44.7 81.4
Deformable DETR 1000 91.5 43.7 83.1
Sparse RCNN + Ours 500 92.0 41.4 83.2
Deformable DETR + Ours 1000 92.1 41.5 84.0

Installation

The codebases are built on top of Detectron2 and Sparse RCNN.

Requirements

  • Linux or macOS with Python ≥ 3.6
  • PyTorch ≥ 1.5 and torchvision that matches the PyTorch installation. You can install them together at pytorch.org to make sure of this
  • OpenCV is optional and needed by demo and visualization

Steps

  1. Install and build libs
git clone https://github.com/megvii-model/Iter-E2EDET.git
cd Iter-E2EDET
python3 setup.py build develop
  1. Load the CrowdHuman images from here and its annotations from here. Then update the directory path of the CrowdHuman dataset in the config.py.
cd projects/crowd-e2e-sparse-rcnn
vim config.py
imgDir = 'CrowdHuman/images'
json_dir = 'CrowdHuman/annotations'
  1. Train Iter SparseR-CNN
cd projects/crowd-e2e-sparse-rcnn
python3 train_net.py --num-gpus 8 \
    --config-file configs/50e.6h.500pro.ignore.yaml

  1. Evaluate Iter SparseR-CNN. You can download the pre-trained model from here for direct evaluation.
-- python3 train_net.py --num-gpus 8 \
    --config-file configs/50e.6h.500pro.ignore.yaml \
    --eval-only MODEL.WEIGHTS path/to/model.pth

License

Iter Sparse RCNN is released under MIT License.

Citing

If you use our work in your research or wish to refer to the baseline results published here, please use the following BibTeX entries:

@article{2022iterdetr,
  title   =  {Progressive End-to-End Object Detection in Crowded Scenes},
  author  =  {Anlin Zheng and Yuang Zhang and Xiangyu Zhang and Xiaojuan Qi and Jian Sun},
  journal =  {arXiv preprint arXiv:arXiv:2203.07669v1},
  year    =  {2022}
}

About

Official implementation of the paper "Progressive End-to-End Object Detection in Crowded Scenes"

License:MIT License


Languages

Language:Python 90.3%Language:Cuda 4.9%Language:C++ 3.9%Language:Shell 0.5%Language:Cython 0.3%Language:Dockerfile 0.1%Language:CMake 0.0%Language:Makefile 0.0%