PKU-EPIC / MaskClustering

58 stars 1 forks source link

How to improve 3D point cloud with missing labels? #3

Closed YZsZY closed 1 week ago

YZsZY commented 1 month ago

Hello author, thanks for open source such an excellent job! I've been working with the code recently, and I've noticed that some of the finer details (such as table legs, chair legs, etc.) are missing after 3D blending, even though the 2D Mask splits them up. image

Could you give some suggestions about how to avoid missing these fine details(such as the config setting)? Thanks a lot!

MiYanDoris commented 4 weeks ago

Thank you for your feedback! There is a quick way to address this issue: by decreasing the point_filter_threshold in the config. Following OVIR-3D, we employ a point filtering strategy in the filter_point function found in utils/post_process.py to remove points with a low detection ratio. Lowering the point_filter_threshold will retain more points, but please note that this may also increase noise. You will need to balance this trade-off accordingly.