megvii-research/PETR — an open-source project — sits at 1.1k GitHub stars. [ECCV2022] PETR: Position Embedding Transformation for Multi-View 3D Object Detection & [ICCV2023] PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
[ECCV2022] Position Embedding Transformation for Multi-View 3D Object Detection
[ICCV2023] PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images
This repository is an official implementation of PETR and PETRv2. The flash attention version can be find from the "flash" branch.
PETR develops position embedding transformation
(PETR) for multi-view 3D object detection. PETR encodes the position
information of 3D coordinates into image features, producing the
3D position-aware features. Object query can perceive the 3D position-aware features and perform end-to-end object detection. It can serve as a simple yet strong baseline for future research.
PETRv2 is a unified framework for 3D perception from multi-view images. Based on PETR, PETRv2 explores the effectiveness of temporal modeling, which utilizes the temporal information of previous frames to boost 3D object detection. The 3D PE achieves the temporal alignment on object position of different frames. A feature-guided position encoder is further introduced to improve the data adaptability of 3D PE. To support for high-quality BEV segmentation, PETRv2 provides a simply yet effective solution by adding a set of segmentation queries. Each segmentation query is responsible for segmenting one specific patch of BEV map. PETRv2 achieves state-of-the-art performance on 3D object detection and BEV segmentation.
News
2023.10.11 The 3D lane detection of PETRv2 has been released on TopoMLP. It support openlanev2 and won the 1st place in CVPR2023 workshop!. 2023.01.25 Our multi-view 3D detection framework StreamPETR (63.6% NDS and 55.0% mAP)** without TTA and future frames. 2023.01.04 Our multi-modal detection framework CMT is released on arxiv. 2022.11.04 The code of multi-scale improvement in PETRv2 is released. 2022.09.21 The code of query denoise improvement in PETRv2 is released. 2022.09.04 PETRv2 with VoVNet backbone and multi-scale achieves (59.1% NDS and 50.8% mAP). 2022.08.11 PETRv2 with GLOM-like backbone and query denoise achieves (59.2% NDS and 51.2% mAP) without extra data. 2022.07.04 PETR has been accepted by ECCV 2022. 2022.06.28 The code of BEV Segmentation in PETRv2 is released. 2022.06.16 The code of 3D object detection in PETRv2 is released. 2022.06.10 The code of PETR is released. 2022.06.06 PETRv2 is released on arxiv. 2022.06.01 PETRv2 achieves another SOTA performance on nuScenes dataset (58.2% NDS and 49.0% mAP) by the temporal modeling and supports BEV segmentation. 2022.03.10 PETR is released on arxiv. 2022.03.08 PETR achieves SOTA performance (50.4% NDS and 44.1% mAP) on standard nuScenes dataset.
Preparation
This implementation is built upon detr3d, and can be constructed as the install.md.
Detection Data
Follow the mmdet3d to process the nuScenes dataset (https://github.com/open-mmlab/mmdetection3d/blob/master/docs/en/data_preparation.md).
Segmentation Data
Download Map expansion from nuScenes dataset (https://www.nuscenes.org/nuscenes#download). Extract the contents (folders basemap, expansion and prediction) to your nuScenes maps folder.
Then build Segmentation dataset:
cd tools
python build-dataset.py
If you want to train the segmentation task immediately, we privided the processed data ( HDmaps-final.tar ) at gdrive. The processed info files of segmentation can also be find at gdrive.
Pretrained weights
To verify the performance on the val set, we provide the pretrained V2-99 weights. The V2-99 is pretrained on DDAD15M (weights) and further trained on nuScenes train set with FCOS3D. For the results on test set in the paper, we use the DD3D pretrained weights. The ImageNet pretrained weights of other backbone can be found here.
Please put the pretrained weights into ./ckpts/.
After preparation, you will be able to see the following directory structure:
You can visualize the 3D object detection following:
python3 tools/visualize.py
Main Results
PETR: We provide some results on nuScenes val set with pretrained models. These model are trained on 8x 2080ti without cbgs. Note that the models and logs are also available at Baidu Netdisk with code petr.
config
mAP
NDS
training
config
download
PETR-r50-c5-1408x512
30.5%
35.0%
18hours
config
log / gdrive
PETR-r50-p4-1408x512
31.70%
36.7%
21hours
config
log / gdrive
PETR-vov-p4-800x320
37.8%
42.6%
17hours
config
log / gdrive
PETR-vov-p4-1600x640
40.40%
45.5%
36hours
config
log / gdrive
PETRv2: We provide a 3D object detection baseline and a BEV segmentation baseline with two frames. The model is trained on 8x 2080ti without cbgs. The processed info files contain 30 previous frames, whose transformation matrix is aligned with the current frame. The info files, models and logs are also available at Baidu Netdisk with code petr.
config
mAP
NDS
training
config
download
PETRv2-vov-p4-800x320
41.0%
50.3%
30hours
config
log / gdrive
config
Drive
Lane
Vehicle
backbone
config
download
PETRv2_BEVseg
85.6%
49.0%
46.3%
V2-99
config
log / gdrive
config
F-score
X-near
X-far
Z-near
Z-far
backbone
config
download
PETRv2_3DLane
61.2%
0.400
0.573
0.265
0.413
V2-99
StreamPETR: Stream-PETR achieves significant performance improvements without introducing extra computation cost, compared to the single-frame baseline.
config
mAP
NDS
FPS-Pytorch
config
download
StreamPETR-r50-704x256
45.0%
55.0%
31.7/s
Acknowledgement
Many thanks to the authors of mmdetection3d and detr3d .
Citation
If you find this project useful for your research, please consider citing:
@article{liu2022petr,
title={Petr: Position embedding transformation for multi-view 3d object detection},
author={Liu, Yingfei and Wang, Tiancai and Zhang, Xiangyu and Sun, Jian},
journal={arXiv preprint arXiv:2203.05625},
year={2022}
}
@article{liu2022petrv2,
title={PETRv2: A Unified Framework for 3D Perception from Multi-Camera Images},
author={Liu, Yingfei and Yan, Junjie and Jia, Fan and Li, Shuailin and Gao, Qi and Wang, Tiancai and Zhang, Xiangyu and Sun, Jian},
journal={arXiv preprint arXiv:2206.01256},
year={2022}
}
No homepage URL was recorded for megvii-research/PETR in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
How active is development on megvii-research/PETR?
The most recent commit recorded on megvii-research/PETR was 2.9 years ago, based on the GitHub push timestamp. The repository has 160 forks — one of the better signals of community interest.
Is megvii-research/PETR open source?
TopGit's metadata for megvii-research/PETR does not record a license. Most public repositories on GitHub ARE open source, but the exact terms vary — verify by opening the LICENSE file directly.
What topics is megvii-research/PETR associated with?
GitHub's repository topics for megvii-research/PETR: "3d-position-embedding", "multi-camera", "multi-task-learning", "object-detection", "segmentation". TopGit's editorial category is open-source.
Where do I read more about megvii-research/PETR?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/megvii-research/PETR is the definitive source.
Read full README in the tab above.
Still deciding about PETR?
One click hands the question to an AI along with this page — see what it says about PETR.