PyMeshLab
PyMeshLab copied to clipboard
The open source mesh processing python library
When calling `Mesh.update_topology()` or `Mesh.face_face_adjacency_matrix()`, it raises `MissingComponentException` and I can't figure out why. A simple way to reproduce: ```python import pymeshlab ms = pymeshlab.MeshSet() ms.apply_filter("create_sphere") m = ms.current_mesh() #...
I'm working on a small tool to generate an animation of physics field data on a mesh (stress, temperature, pressure, etc). Basically, I take field data from any engineering software,...
Hello, I got a problem when I wanted to apply the filter ,"save_snapshot" to the cloud points. The error was "number of vertices less than three or zero number of...
I created a broken ply file on purpose to check how PyMeshLab handles it, which crashes PyMeshLab on `load_new_mesh`: https://drive.google.com/file/d/1EtKl0HL4L3vlYxt0XZviEEnA8Lp_tLIB/view?usp=sharing
Hi guys, I'm not sure how to export an obj file and that is writing the filename without the absolute path. I try to use save_current_mesh to export an obj...
Hi, I'm trying to use `compute_scalar_by_shape_diameter_function_per_vertex()` but I can't generate nothing, the mtl file generated have just one color. You can find my code and execute yourself [here](https://colab.research.google.com/drive/1eCdlNIBSIvH6Xu-nZjuYhliQd90pT6pQ?usp=sharing) Probably I'm...
First of all, thanks for the great library, it is of great help in my Master's thesis on Single-View 3D Reconstruction. For my project, I am training a Neural Network...
In some case, i find the speed of pymeshlab code snipest elapsed very different time-consume. And i tested simply to verify this. In experiment1(test1.py): i run the code tempelate: ```...
with same mesh file, i tested in MacOS, Windows, Linux with loop subvision and decimate, here are results: macos and windows: ``` vertex: 321098, faces: 642208 loop: 10.47s decimate: 8.97s...
Importing pymeshlab throws the following import error "ImportError: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.15' not found" even though the file libQt5Core.so.5 exists in the specified path System : Ubuntu 18.04.6 LTS Steps to...