8000 GitHub - CocoBoom/fsd-bev: This is the implementation of the paper "FSD-BEV: Foreground Self-Distillation for Multi-view 3D Object Detection" (ECCV 2024)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

This is the implementation of the paper "FSD-BEV: Foreground Self-Distillation for Multi-view 3D Object Detection" (ECCV 2024)

License

Notifications You must be signed in to change notification settings

CocoBoom/fsd-bev

Repository files navigation

FSD-BEV

[ECCV2024] FSD-BEV: Foreground Self-Distillation for Multi-view 3D Object Detection


News

  • 2024.07.4 FSD-BEV is accepted by ECCV 2024. The paper is available here.

Main Results

Config mAP NDS Baidu Google
FSD-BEV-R50-CBGS 40.3 52.6 link link
FSD-BEV-R101-CBGS 48.8 58.9 link link

Get Started

1. Please follow these steps to install FSD-BEV.

a. Create a conda virtual environment and activate it.

conda create -n fsdbev python=3.8 -y
conda activate fsdbev

b. Install PyTorch and torchvision following the official instructions.

pip install torch==1.10.0+cu111 torchvision==0.11.0+cu111 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html

c. Install FSD-BEV as mmdet3d.

pip install mmcv-full==1.5.3
pip install mmdet==2.25.1
pip install mmsegmentation==0.25.0
pip install -e .

2. Prepare nuScenes dataset as introduced in nuscenes_det.md and create the pkl for FSD-BEV by running:

python tools/create_data_bevdet.py

3. Download nuScenes-lidarseg from nuScenes official site and put it under data/nuscenes/. Create data after Frame Combination processing by running:

python tools/generate_depth_multi.py

4. Train and evalutate model following:

bash tools/dist_train.sh configs/fsdbev/fsdbev-r50-cbgs.py 8
bash tools/dist_test.sh configs/fsdbev/fsdbev-r50-cbgs.py $CHECKPOINT 8 --eval bbox

Acknowledgement

This project is not possible without multiple great open-sourced code bases. We list some notable examples below.

Bibtex

If FSD-BEV is helpful for your research, please consider citing the following BibTeX entry.

@inproceedings{jiang2025fsd,
  title={FSD-BEV: Foreground Self-Distillation for Multi-view 3D Object Detection},
  author={Jiang, Zheng and Zhang, Jinqing and Zhang, Yanan and Liu, Qingjie and Hu, Zhenghui and Wang, Baohui and Wang, Yunhong},
  booktitle={European Conference on Computer Vision},
  pages={110--126},
  year={2025},
  organization={Springer}
}

About

This is the implementation of the paper "FSD-BEV: Foreground Self-Distillation for Multi-view 3D Object Detection" (ECCV 2024)

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0