PyMeshLab
PyMeshLab copied to clipboard
The open source mesh processing python library
Hi, Used the following code on win10: > import pymeshlab > > ms = pymeshlab.MeshSet() > > ms.load_new_mesh(r'path\to\model.obj') > ms.save_current_mesh(model.u3d, compression_val=1000, save_face_color=True) This works perfectly when .obj file is in...
There is a way, for eg a call-back to know the progress percentage of a filter. I'm using long execution in time filters like generate_surface_reconstruction_screened_poisson() which will take a lot...
I have a mesh with per-wedge UV and a associated texture image. After applying `close_holes` filter, some new faces is added to close holes, however the material and per-wedge UV...
Why does 1% correspond to 1/10000 of bounding box diagonal? Does that mean 100% would correspond to 1/100 of bounding box diagonal?
Hi, i just stumbled accros your great PyMeshLab module, which makes working in MeshLab really convenient. In my case, I am also interested in the optimal oriented bounding box, which...
Hello, thank you for your great open-source work! I use Linux and a Python 3.9 virtual environment. I installed the _**pymeshlab==2023.12.post1**_. But I meet this problem when running code that...
my system is ubuntu20.04 with intel CPU, and I use conda python env. pythonr version tried 3.7.13, 3.9.18 and 3.10, pymeshlab tried from 0.2.1 to latest 2023.12.post1, all of those...
Hi, I've the feeling that the "ms.compute_normal_per_vertex(weightmode=1)" command is not working. I tested in in UI version, works great, removes all the here and there faces that are not properly...
Dear authors/developers of pymeshlab, If your time is available, I want to request a 3D mesh feature, skin surface meshing. It is from CGAL library https://doc.cgal.org/latest/Skin_surface_3/index.html#Chapter_3D_Skin_Surface_Meshing. For now, I mimic...
I am trying to load a PLY file with a custom float vertex property named `confidence`, ranging between 0 and 100. The MeshLab GUI automatically converts this property to vertex...