JonasSchult / Mask3D

Mask3D predicts accurate 3D semantic instances achieving state-of-the-art on ScanNet, ScanNet200, S3DIS and STPLS3D.
MIT License
525 stars 103 forks source link

How to reduce the number of points in the point cloud? #130

Closed 200033 closed 1 year ago

200033 commented 1 year ago

I want to use one GPU for semantic segmentation on S3DIS, but there is not enough memory, so how can I reduce the number of points in the point cloud?

JonasSchult commented 1 year ago

Hi!

thanks for your interest in our work! Easiest way is to increase the voxel size, e.g., data.voxel_size=0.05 in the config file / CLI. However, this comes with a decreased performance.

Best, Jonas