- [2023/04/20] Update more pretrained weights.
- [2023/04/12] Paper is on Arxiv.
- [2023/04/11] Code and demo release.
The vision-based perception for autonomous driving has undergone a transformation from the bird-eye-view (BEV) representations to the 3D semantic occupancy. Compared with the BEV planes, the 3D semantic occupancy further provides structural information along the vertical direction. This paper presents OccFormer, a dual-path transformer network to effectively process the 3D volume for semantic occupancy prediction. OccFormer achieves a long-range, dynamic, and efficient encoding of the camera-generated 3D voxel features. It is obtained by decomposing the heavy 3D processing into the local and global transformer pathways along the horizontal plane. For the occupancy decoder, we adapt the vanilla Mask2Former for 3D semantic occupancy by proposing preserve-pooling and class-guided sampling, which notably mitigate the sparsity and class imbalance. Experimental results demonstrate that OccFormer significantly outperforms existing methods for semantic scene completion on SemanticKITTI dataset and for LiDAR semantic segmentation on nuScenes dataset.
LiDAR Segmentation on nuScenes test set: Semantic Scene Completion on SemanticKITTI test set:
[1] Check installation for installation. Our code is mainly based on mmdetection3d.
[2] Check data_preparation for preparing SemanticKITTI and nuScenes datasets.
[3] Check train_and_eval for training and evaluation.
[4] Check predict_and_visualize for prediction and visualization.
[5] Check test_submission for preparing the test submission to SemanticKITTI SSC and nuScenes LiDAR Segmentation.
We provide the pretrained weights on SemanticKITTI and nuScenes datasets, reproduced with the released codebase.
Dataset | Backbone | SC IoU | SSC mIoU | LiDARSeg mIoU | Model Weights | Training Logs |
---|---|---|---|---|---|---|
SemanticKITTI | EfficientNetB7 | 36.42(val), 34.46(test) | 13.50(val), 12.37(test) | - | Link | Link |
nuScenes | R50 | - | - | 68.1 | Link | Link |
nuScenes | R101-DCN | - | - | 70.0 | Link | Link |
For SemanticKITTI dataset, the validation performance may fluctuate around 13.2 ~ 13.6 (SSC mIoU) considering the limited training samples.
TPVFormer: Tri-perspective view (TPV) representation for 3D semantic occupancy.
OpenOccupancy: A large scale benchmark extending nuScenes for surrounding semantic occupancy perception.
This project is developed based on the following open-sourced projects: MonoScene, BEVDet, BEVFormer, Mask2Former. Thanks for their excellent work.
If you find this project helpful, please consider giving this repo a star or citing the following paper:
@article{zhang2023occformer,
title={OccFormer: Dual-path Transformer for Vision-based 3D Semantic Occupancy Prediction},
author={Zhang, Yunpeng and Zhu, Zheng and Du, Dalong},
journal={arXiv preprint arXiv:2304.05316},
year={2023}
}