Skip to content

l1997i/lim3d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

20 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Durham CVF arXiv GitHub license PyTorch Stars

    

πŸ”₯ Less is More: Reducing Task and Model Complexity for 3D Point Cloud Semantic Segmentation [CVPR 2023]

Li Li, Hubert P. H. Shum and Toby P. Breckon, In Proc. International Conference on Computer Vision and Pattern Recognition (CVPR), IEEE, 2023 [homepage] [pdf] [video] [poster]

cvpr2023_777_video.mp4

Abstract: Whilst the availability of 3D LiDAR point cloud data has significantly grown in recent years, annotation remains expensive and time-consuming, leading to a demand for semi-supervised semantic segmentation methods with application domains such as autonomous driving. Existing work very often employs relatively large segmentation backbone networks to improve segmentation accuracy, at the expense of computational costs. In addition, many use uniform sampling to reduce ground truth data requirements for learning needed, often resulting in sub-optimal performance. To address these issues, we propose a new pipeline that employs a smaller architecture, requiring fewer ground-truth annotations to achieve superior segmentation accuracy compared to contemporary approaches. This is facilitated via a novel Sparse Depthwise Separable Convolution module that significantly reduces the network parameter count while retaining overall task performance. To effectively sub-sample our training data, we propose a new Spatio-Temporal Redundant Frame Downsampling (ST-RFD) method that leverages knowledge of sensor motion within the environment to extract a more diverse subset of training data frame samples. To leverage the use of limited annotated data samples, we further propose a soft pseudo-label method informed by LiDAR reflectivity. Our method outperforms contemporary semi-supervised work in terms of mIoU, using less labeled data, on the SemanticKITTI (59.5@5%) and ScribbleKITTI (58.1@5%) benchmark datasets, based on a 2.3Γ— reduction in model parameters and 641Γ— fewer multiply-add operations whilst also demonstrating significant performance improvement on limited training data (i.e., Less is More).

News

[2024/01/30] We release the ST-RFD training split on SemanticKITTI dataset.
[2023/06/21] πŸ‡¨πŸ‡¦ We will present our work in West Building Exhibit Halls ABC 108 @ Wed 21 Jun 10:30 a.m. PDT β€” noon PDT. See you in Vancouver, Canada.
[2023/06/20] Code released.
[2023/02/27] LiM3D was accepted at CVPR 2023!

Data Preparation

The data is organized in the format of {SemanticKITTI} U {ScribbleKITTI}.

sequences/
    β”œβ”€β”€ 00/
    β”‚   β”œβ”€β”€ scribbles/
    β”‚   β”‚     β”œ 000000.label
    β”‚   β”‚     β”œ 000001.label
    β”‚   β”‚     β”” .......label
    β”‚   β”œβ”€β”€ labels/
    β”‚   β”œβ”€β”€ velodyne/
    β”‚   β”œβ”€β”€ image_2/
    β”‚   β”œβ”€β”€ image_3/
    β”‚   β”œβ”€β”€ times.txt
    β”‚   β”œβ”€β”€ calib.txt
    β”‚   └── poses.txt
    β”œβ”€β”€ 01/
    β”œβ”€β”€ 02/
    .
    .
    └── 21/

SemanticKITTI

Please follow the instructions from SemanticKITTI to download the dataset including the KITTI Odometry point cloud data.

ScribbleKITTI

Please download ScribbleKITTI scribble annotations and unzip in the same directory. Each sequence in the train-set (00-07, 09-10) should contain the velodyne, labels and scribbles directories.

Move the sequences folder or make a symbolic link to a new directory inside the project dir called data/. Alternatively, edit the dataset: root_dir field of each config file to point to the sequences folder.

Environment Setup

For the installation, we recommend setting up a virtual environment using conda or venv:

For conda,

conda env create -f environment.yaml
conda activate lim3d 
pip install -r requirements.txt

For venv,

python -m venv ~/venv/lim3d
source ~/venv/scribblekitti/bin/activate
pip install -r requirements.txt

Furthermore install the following dependencies:

Experiments

Our overall architecture involves three stages (Figure 2). You can reproduce our results through the scripts provided in the experiments folder:

  1. Training: we utilize reflectivity-prior descriptors and adapt the Mean Teacher framework to generate high-quality pseudo-labels. Running with bash script: bash experiments/train.sh;
  2. Pseudo-labeling: we fix the trained teacher model prediction in a class-range-balanced manner, expanding dataset with Reflectivity-based Test Time Augmentation (Reflec-TTA) during test time. Running with bash script: bash experiments/crb.sh, then save the pseudo-labels bash experiments/save.sh;
  3. Distillation with unreliable predictions: we train on the generated pseudo-labels, and utilize unreliable pseudo-labels in a category-wise memory bank for improved discrimination. Running with bash script: bash experiments/distilation.sh.

Results

Please refer to our **supplementary ** and supplementary documentation for more qualitative results.

You can download our pretrained models here via Onedrive.

To validate the results, please refer to the scripts in experiments folder, and put the pretrained models in the models folder. Specify CKPT_PATH and SAVE_DIR in predict.sh file.

For example, if you want to validate the results of 10% labeled training frames + LiM3D (without SDSC) + with reflectivity features on ScribbleKITTI, you can specify CKPT_PATH as model/sck_crb10_feat69_61.01.ckpt. Run following scripts:

bash experiments/predict.sh

Citation

If you are making use of this work in any way, you must please reference the following paper in any report, publication, presentation, software release or any other associated materials:

Less is More: Reducing Task and Model Complexity for 3D Point Cloud Semantic Segmentation (Li Li, Hubert P. H. Shum and Toby P. Breckon), In IEEE Conf. Comput. Vis. Pattern Recog. (CVPR), 2023. [homepage] [pdf] [video] [poster]

@InProceedings{li23lim3d,
  title      =    {Less Is {{More}}: {{Reducing Task}} and {{Model Complexity}} for {{3D Point Cloud Semantic Segmentation}}},
  author     =    {Li, Li and Shum, Hubert P. H. and Breckon, Toby P.},
  keywords   =    {point cloud, semantic segmentation, sparse convolution, depthwise separable convolution, autonomous driving},
  year       =    {2023},
  month      =    June,
  publisher  =    {{IEEE}},
  booktitle  =    {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
}

Acknowledgements

We would like to additionally thank the authors the open source codebase ScribbleKITTI, Cylinder3D, and U2PL.

About

πŸ”₯(CVPR 2023) Less is More: Reducing Task and Model Complexity for 3D Point Cloud Semantic Segmentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published