Crash after applying close_merge_vertices && Ball pivoting #96
-
|
Hi, I have a point cloud, and when I apply the filter: merge_close_vertices it removes everything. I tested that on UI Meshlab and it works great but not with the pymeshlab. ms = pymeshlab.MeshSet() Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
Take a look to this tutorial. |
Beta Was this translation helpful? Give feedback.

ms.apply_filter('merge_close_vertices', threshold=12)treats the parameterthresholdas a float (absolute value).To treat it as a percentage, you need to pass an object of type Percentage to the parameter
threshold.Take a look to this tutorial.