PJLab-ADG / DetZero

[ICCV 2023] DetZero: Rethinking Offboard 3D Object Detection with Long-term Sequential Point Clouds
https://superkoma.github.io/detzero-page/
Apache License 2.0
299 stars 29 forks source link
# DetZero

This repository is the official implmentation of DetZero: Rethinking Offboard 3D Object Detection with Long-term Sequential Point Clouds.

https://github.com/PJLab-ADG/DetZero/assets/25716775/bbbd8735-25f9-4d64-a388-033970de7c06

teaser

Overview

Highlights

Changelog

[2020-03-16] DetZero v0.1.0 is released.

Project Structure

  DetZero
  ├── detection
  │   ├── detzero_det
  │   │   │── datasets
  │   │   │   │── DatasetTemplate: the basic class for constructing dataset
  │   │   │   │── augmentor: different augmentation during training or 
  │   │   │   │── processor: processing points into voxel space
  │   │   │   │── waymo: the specific dataset module
  │   │   │── models: detection model related modules
  │   │   │── utils: the specific utils only used in detection module
  │   ├── tools
  │       ├── cfgs
  │       │   │── det_dataset_cfgs
  │       │   │── det_model_cfgs
  │       ├── train / test / visualize scripts
  │
  ├── tracking: the tracking module
  ├── refining: the refining module
  ├── utils: the libraries and functions used in all the other modules
  ├── evaluator: the offline evaluation tool
  ├── data: the root path of dataset raw data and the generated annotations
  ├── daemon: the supplementary tool module for processing refining results

Running

Main Performance

DET TRK GRM PRM CRM mAPH_L2 VEH PED CYC Log
76.24 82.57/75.09 83.23/76.47 79.35/77.16 log
76.44 82.57/75.24 83.07/76.34 79.86/77.75 log
78.00 84.49/77.17 84.71/78.04 80.23/78.08 log
78.25 85.48/78.55 84.32/77.78 80.49/78.43 log
79.79 87.81/81.01 85.94/79.48 80.97/78.87 log
81.70 89.06/82.92 87.06/81.01 83.11/81.17 log

Cite

If you find our work helpful, please kindly cite our paper:

@inproceedings{ma2023detzero,
  title = {DetZero: Rethinking Offboard 3D Object Detection with Long-term Sequential Point Clouds},
  author = {Tao Ma and Xuemeng Yang and Hongbin Zhou and Xin Li and Botian Shi and Junjie Liu and Yuchen Yang and Zhizheng Liu and Liang He and Yu Qiao and Yikang Li and Hongsheng Li},
  booktitle = {Proceedings of International Conference on Computer Vision (ICCV)},
  year = {2023}
}

Contact

Acknowledgement

The structure of our project is totally based on OpenPCDet, leading to an easy way for further research and development. We also sincerely appreciate the following open-source projects for providing valuable and high-quality codes:

TODO List