Skip to content

hustvl/Symphonies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Symphonies (Scene-from-Insts) 🎻

Haoyi Jiang 1,✢, Tianheng Cheng 1,✢, Naiyu Gao 2, Haoyang Zhang 2, Tianwei Lin 2, Wenyu Liu 1, Xinggang Wang 1,✉️
1 School of EIC, HUST, 2 Horizon Robotics

CVPR 2024

arXiv License: MIT

PWC

PWC

TL;DR: Our paper delve into enhancing SSC through the utilization of instance-centric representations. We propose a novel paradigm that integrates instance queries to facilitate instance semantics and capture global context. Our approach achieves SOTA results of 15.04 & 18.58 mIoU on the SemanticKITTI & KITTI-360, respectively.

This project is built upon TmPL, a template for rapid & flexible DL experimentation development built upon Lightning & Hydra.

arch

vis

vis

News

  • Feb 27 '24: Our paper has been accepted at CVPR 2024. 🎉
  • Nov 22 '23: We have updated our paper on arXiv with the latest results.
  • Sep 18 '23: We have achieved state-of-the-art results on the recently published SSCBench-KITTI-360 benchmark.
  • Jun 28 '23: We have released the arXiv paper of Symphonies.

Preliminary

Installation

  1. Install PyTorch and Torchvision referring to https://pytorch.org/get-started/locally/.

  2. Install MMDetection referring to https://mmdetection.readthedocs.io/en/latest/get_started.html#installation.

  3. Install the rest of the requirements with pip.

    pip install -r requirements.txt

Prepare Dataset

SemanticKITTI

  1. Download the RGB images, calibration files, and preprocess the labels, referring to the documentation of VoxFormer or MonoScene.

  2. Generate depth predications with pre-trained MobileStereoNet referring to VoxFormer https://github.com/NVlabs/VoxFormer/tree/main/preprocess#3-image-to-depth.

SSCBench-KITTI-360

  1. Refer to https://github.com/ai4ce/SSCBench/tree/main/dataset/KITTI-360.

Pretrained Weights

The pretrained weight of MaskDINO can be downloaded here.

Usage

  1. Setup

    export PYTHONPATH=`pwd`:$PYTHONPATH
  2. Training

    python tools/train.py [--config-name config[.yaml]] [trainer.devices=4] \
        [+data_root=$DATA_ROOT] [+label_root=$LABEL_ROOT] [+depth_root=$DEPTH_ROOT]
  3. Testing

    Generate the outputs for submission on the evaluation server:

    python tools/test.py [+ckpt_path=...]
  4. Visualization

    1. Generating outputs

      python tools/generate_outputs.py [+ckpt_path=...]
    2. Visualization

      python tools/visualize.py [+path=...]

Results

  1. SemanticKITTI

    Method Split IoU mIoU Download
    Symphonies val 41.92 14.89 log / model
    Symphonies test 42.19 15.04 output
  2. KITTI-360

    Method Split IoU mIoU Download
    Symphonies test 44.12 18.58 log / model

Citation

If you find our paper and code useful for your research, please consider giving this repo a star ⭐ or citing 📝:

@article{jiang2023symphonies,
      title={Symphonize 3D Semantic Scene Completion with Contextual Instance Queries},
      author={Haoyi Jiang and Tianheng Cheng and Naiyu Gao and Haoyang Zhang and Tianwei Lin and Wenyu Liu and Xinggang Wang},
      journal={CVPR},
      year={2024}
}

Acknowledgements

The development of this project is inspired and informed by MonoScene, MaskDINO and VoxFormer. We are thankful to build upon the pioneering work of these projects.

License

Released under the MIT License.