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
545 stars 71 forks source link

Use os.sep instead of hardcoded linux separator #53

Closed rjanvier closed 8 months ago

rjanvier commented 8 months ago

What does this PR do?

It makes SPT training work on windows by replacing calls to str.split('/') by str.split(os.sep). It corrects a missing import too.

Before submitting

Did you have fun?

moderatly