【BEV】BEVFormer——利用时空 Transformer 从多相机图像中学习鸟瞰图表示
论文
复现
环境安装
官方教程:https://github.com/fundamentalvision/BEVFormer/blob/master/docs/install.md
- 创建conda环境
1 |
|
- 安装pytorch
1 |
|
- 安装gcc6
1 |
|
- 安装mmcv-full、mmdet、mmseg
1 |
|
安装mmdet3d
1
2
3
4git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d
git checkout v0.17.1 # Other versions may not be compatible.
pip install -e .安装detectron2和Timm
1
2pip install einops fvcore seaborn iopath==0.1.9 timm==0.6.13 typing-extensions==4.5.0 pylint ipython==8.12 numpy==1.19.5 matplotlib==3.5.2 numba==0.48.0 pandas==1.4.4 scikit-image==0.19.3 setuptools==59.5.0
python -m pip install 'git+https://github.com/facebookresearch/detectron2.git'下载BEVFormer
1
2
3
4git clone https://github.com/fundamentalvision/BEVFormer.git
cd bevformer
mkdir ckpts
cd ckpts & wget https://github.com/zhiqi-li/storage/releases/download/v1.0/r101_dcn_fcos3d_pretrain.pth
【BEV】BEVFormer——利用时空 Transformer 从多相机图像中学习鸟瞰图表示
http://rlin.site/2024/04/16/bevformer/