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 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.
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.
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.
The close-set panoptic segmentation networks are pretrained on the SemanticKITTI dataset.
We evaluate our framework on the SemanticKITTI open-world LiDAR instance segmentation benchmark.
Please contact us with any questions or suggestions!
Wenbang Deng: [email protected] and Xieyuanli Chen: [email protected]
This project is free software made available under the MIT License. For details see the LICENSE file.
We refer to the following open-source repository: https://github.com/placeforyiming/ICCVW21-LiDAR-Panoptic-Segmentation-TradiCV-Survey-of-Point-Cloud-Cluster