nubot-nudt / ElC-OIS

[IROS23] Ellipsoidal Clustering for Open-World Instance Segmentation on LiDAR Data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ElC-OIS: Ellipsoidal Clustering for Open-World Instance Segmentation on LiDAR Data

This repository contains the implementation of our paper, which was accepted by IROS2023 :

ElC-OIS: Ellipsoidal Clustering for Open-World Instance Segmentation on LiDAR Data [pdf][IEEE].
Wenbang Deng, Kaihong Huang, Qinghua Yu, Huimin Lu, Zhiqiang Zheng, Xieyuanli Chen

If you use our code in your work, please star our repo and cite our paper.

@inproceedings{deng2023iros,
	title={{ElC-OIS: Ellipsoidal Clustering for Open-World Instance Segmentation on LiDAR Data}},
	author={Deng, Wenbang and Huang, Kaihong and Yu, Qinghua and Lu, Huimin and Zheng, Zhiqiang and Chen, Xieyuanli},
	booktitle={IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
        pages={7606-7613},
	year={2023}
}

Visualization of the segmentation results. The instances circled with red lines are unknown instances, i.e., instances unlabeled in the training set. The left ones circled with blue lines are known instances, such as car, person, and bicycle.

Overview

Overview of our framework. The framework consists of three main components:

  • close-set panoptic segmentation for removing the background and generating raw known instances
  • unknown instance clustering for using proposed ellipsoidal clustering to segment unknown instances
  • known instance refinement for using proposed diffuse searching to refine raw known instances.

Installation

The project is tested in Ubuntu 18.04 and Ubuntu 20.04. For installation, run the following command in the root directory of this project:

./installation.sh

Then, download the close-set panoptic segmentation results of DS-Net and Panoptic-PolarNet in OneDrive or Baidu Netdisk, and unzip it in the root directory of this project.

How to run

Run the following command in the root directory:

python3 ois_framework.py --dataset_dir /dataset/kitti/dataset/sequences --target_set val --panoptic_segmentation_result DS-net --use_refinement

where --dataset_dir is the path of kitti velodyne laser data sequences.

Dataset and benchmark

Dataset

The close-set panoptic segmentation networks are pretrained on the SemanticKITTI dataset.

Benchmark

We evaluate our framework on the SemanticKITTI open-world LiDAR instance segmentation benchmark.

Contact

Please contact us with any questions or suggestions!

Wenbang Deng: wbdeng@nudt.edu.cn and Xieyuanli Chen: xieyuanli.chen@nudt.edu.cn

License

This project is free software made available under the MIT License. For details see the LICENSE file.

Acknowledgments

We refer to the following open-source repository: https://github.com/placeforyiming/ICCVW21-LiDAR-Panoptic-Segmentation-TradiCV-Survey-of-Point-Cloud-Cluster

About

[IROS23] Ellipsoidal Clustering for Open-World Instance Segmentation on LiDAR Data

License:MIT License


Languages

Language:Python 62.2%Language:C++ 30.3%Language:Shell 4.6%Language:CMake 3.0%