Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: arxiv.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (8.3%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: kay-Lifeng
  • License: apache-2.0
  • Language: Python
  • Default Branch: master
  • Size: 12.8 MB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • Open Issues: 1
  • Releases: 0
Created over 3 years ago · Last pushed over 3 years ago
Metadata Files
Readme Contributing License Code of conduct Citation Support

README.md

BEVDet

Illustrating the performance of the proposed BEVDet on the nuScenes val set

News

  • 2022.06.01 We release the code and models of both BEVDet and BEVDet4D!
  • 2022.04.01 We propose BEVDet4D to lift the scalable BEVDet paradigm from the spatial-only 3D space to the spatial-temporal 4D space. Technical report is released on arixv. [BEVDet4D].
  • 2022.04.01 We upgrade the BEVDet paradigm with some modifications to improve its performance and inference speed. Thchnical report of BEVDet has been updated. [BEVDetv1].
  • 2021.12.23 BEVDet is now on arxiv. [BEVDet].

Update

  • 2022.07.13 Support bev-pool proposed in BEVFusion, which will speed up the training process of bevdet-tiny by +25%.
  • 2022.07.08 Support visualization remotely! Please refer to Get Started for usage.
  • 2022.06.29 Support acceleration of the Lift-Splat-Shoot view transformer! Please refer to [Technical Report] for detailed introduction and Get Started for testing BEVDet with acceleration.

Main Results

| Method | mAP | NDS | FPS |Mem (MB) | Model | Log |--------|----------|---------|--------|-------------|-----|-------| | BEVDet-Tiny | 30.8 | 40.4 | 15.6 |11,965| google / baidu | google /baidu | BEVDet4D-Tiny | 33.8 | 47.6 | 15.5 |11,557| google / baidu | google /baidu

Get Started

Installation and Data Preparation

Please see getting_started.md

Estimate the inference speed of BEVDet

```shell

with acceleration

python tools/analysis_tools/benchmark.py configs/bevdet/bevdet-sttiny-accelerated.py $checkpoint

without acceleration

python tools/analysis_tools/benchmark.py configs/bevdet/bevdet-sttiny.py $checkpoint ```

Visualize the predicted result with open3d.

Official implementation. (Visualization locally only) shell python tools/test.py $config $checkpoint --show --show-dir $save-path Private implementation. (Visualization remotely/locally) shell python tools/test.py $config $checkpoint --format-only --eval-options jsonfile_prefix=$savepath python tools/analysis_tools/vis.py $savepath/pts_bbox/results_nusc.json

Acknowledgement

This project is not possible without multiple great open-sourced code bases. We list some notable examples below. * open-mmlab * CenterPoint * Lift-Splat-Shoot * Swin Transformer

Beside, there are some other attractive works extend the boundary of BEVDet. * BEVerse for multi-task learning. * BEVFusion for acceleration, multi-task learning, and multi-sensor fusion. (Note: The acceleration method is a concurrent work of that of BEVDet and has some superior characteristics like memory saving and completely equivalent.)

Bibtex

If this work is helpful for your research, please consider citing the following BibTeX entry. ``` @article{huang2022bevdet4d, title={BEVDet4D: Exploit Temporal Cues in Multi-camera 3D Object Detection}, author={Huang, Junjie and Huang, Guan}, journal={arXiv preprint arXiv:2203.17054}, year={2022} }

@article{huang2021bevdet, title={BEVDet: High-performance Multi-camera 3D Object Detection in Bird-Eye-View}, author={Huang, Junjie and Huang, Guan and Zhu, Zheng and Yun, Ye and Du, Dalong}, journal={arXiv preprint arXiv:2112.11790}, year={2021} } ```

Owner

  • Login: kay-Lifeng
  • Kind: user

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
  - name: "MMDetection3D Contributors"
title: "OpenMMLab's Next-generation Platform for General 3D Object Detection"
date-released: 2020-07-23
url: "https://github.com/open-mmlab/mmdetection3d"
license: Apache-2.0

GitHub Events

Total
Last Year

Dependencies

requirements/docs.txt pypi
  • docutils ==0.16.0
  • m2r *
  • myst-parser *
  • opencv-python *
  • sphinx ==4.0.2
  • sphinx-copybutton *
  • sphinx_markdown_tables *
  • torch *
requirements/mminstall.txt pypi
  • mmcv-full >=1.3.8,<=1.4.0
  • mmdet >=2.14.0,<=3.0.0
  • mmsegmentation >=0.14.1,<=1.0.0
requirements/optional.txt pypi
  • open3d *
  • waymo-open-dataset-tf-2-1-0 ==1.2.0
requirements/readthedocs.txt pypi
  • mmcv *
  • torch *
  • torchvision *
requirements/runtime.txt pypi
  • lyft_dataset_sdk *
  • networkx >=2.2,<2.3
  • numba ==0.48.0
  • numpy <1.20.0
  • nuscenes-devkit *
  • plyfile *
  • scikit-image *
  • tensorboard *
  • trimesh >=2.35.39,<2.35.40
requirements/tests.txt pypi
  • asynctest *
  • codecov *
  • flake8 *
  • interrogate *
  • isort *
  • kwarray *
  • pytest *
  • pytest-cov *
  • pytest-runner *
  • ubelt *
  • xdoctest >=0.10.0
  • yapf *