drprojects / superpoint_transformer

Official PyTorch implementation of Superpoint Transformer introduced in [ICCV'23] "Efficient 3D Semantic Segmentation with Superpoint Transformer" and SuperCluster introduced in [3DV'24 Oral] "Scalable 3D Panoptic Segmentation As Superpoint Graph Clustering"
MIT License
546 stars 73 forks source link

About Superpoint-Graphs Computation #25

Closed HalvesChen closed 1 year ago

HalvesChen commented 1 year ago

Hi, thanks for your amazing job! I am interested in the implementation of Superpoint-Graphs Computation, could you tell me where the implementation please?

drprojects commented 1 year ago

Hi @HalvesChen, thanks for your interest in the project !

If you are interested in the superpoint-graphs computation as described in our paper, you will want to look into the following transforms:

For a better understanding of how the preprocessing works and which transforms are chained together, I invite you to have a look at the config/datamodule/*.yaml of your dataset of interest.

Best,

Damien