Removing the parts of surface which are outliers after running Screened Poisson Reconstruction in Meshlab

前端 未结 1 2017
旧时难觅i
旧时难觅i 2021-01-29 00:09

after running the Screened Poisson Reconstruction in Meshlab, I got the mesh with some extended surface as in this figure

Does meshlab support any tools for removing th

1条回答
  •  清酒与你
    2021-01-29 01:09

    MeshLab is using an implementation of PoissonRecon, which is found here: https://github.com/mkazhdan/PoissonRecon

    What you are seeing is due to the default boundary condition used by the algorithm, which is a Neumann boundary condition. Unfortunately, MeshLab does not allow you to modify which boundary condition is being used for the Poisson solver. If you compile the actual source code, you can specify the Dirichlet boundary condition as a command line argument, which will prevent you from having this large open surface.

    If you have issues with disconnected pieces, you can use the SurfaceTrimmer program from the same repo.

    0 讨论(0)
提交回复
热议问题