MCPcopy Create free account
hub / github.com/cnr-isti-vclab/PyMeshLab

github.com/cnr-isti-vclab/PyMeshLab @v2025.7.post1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2025.7.post1 ↗ · + Follow
244 symbols 441 edges 91 files 11 documented · 5% updated 5mo agov2025.7.post1 · 2026-01-30★ 96677 open issues

Browse by type

Functions 210 Types & classes 34
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

PyMeshLab

DOI

BuildAndTest

Documentation Status Downloads

PyMeshLab is a Python library that interfaces to MeshLab, the popular open source application for editing and processing large 3D triangle meshes. Python bindings are generated using pybind11.

Documentation

You can find the official documentation here.

Install PyMeshLab

You can easily install PyMeshLab using pip:

pip3 install pymeshlab

Note about Conda

PyMeshLab is now available on Conda-Forge.

If you are in a Conda environment, we recommend installing PyMeshLab from Conda-Forge:

conda install -c conda-forge pymeshlab

See this discussion for more information.

Run PyMeshLab

After installing PyMeshLab through pip:

python
>>> import pymeshlab
>>> ms = pymeshlab.MeshSet()

You can load, save meshes and apply MeshLab filters:

ms.load_new_mesh('airplane.obj')
ms.generate_convex_hull()
ms.save_current_mesh('convex_hull.ply')

And apply filters with your parameters:

ms.create_noisy_isosurface(resolution=128)

You can find all the names and parameters of the filters in the List of Filters page of the documentation.

To run the tests:

pip3 install pytest
pytest --pyargs pymeshlab

Build PyMeshLab

See the src folder that contains the instructions to build PyMeshLab.

License

The PyMeshlab source is released under the GPL License.

Copyright

   PyMeshLab
   All rights reserved.

   VCGLib  http://www.vcglib.net                                     o o
   Visual and Computer Graphics Library                            o     o
                                                                  _   O  _
   Paolo Cignoni                                                    \/)\/
   Visual Computing Lab  http://vcg.isti.cnr.it                    /\/|
   ISTI - Italian National Research Council                           |
   Copyright(C) 2020                                                  \

References

DOI

Please, when using this tool, cite:

@software{pymeshlab,
  author       = {Muntoni, Alessandro and Cignoni, Paolo},
  title        = {{PyMeshLab}},
  month        = jan,
  year         = 2021,
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.4438750}
}

Contacts

  • Paolo Cignoni (paolo.cignoni (at) isti.cnr.it)
  • Alessandro Muntoni (alessandro.muntoni (at) isti.cnr.it)

Feedback

For documented and repeatable bugs, feature requests, etc., please use the GitHub issues.

Core symbols most depended-on inside this repo

Shape

Method 150
Function 60
Class 34

Languages

C++84%
Python16%

Modules by API surface

src/pymeshlab/pymeshlab/mesh.cpp55 symbols
src/pymeshlab/pymeshlab/meshset.cpp26 symbols
src/pymeshlab/pymeshlab/helpers/meshset_helper.cpp18 symbols
src/pymeshlab/pymeshlab/helpers/meshset_helper.h14 symbols
src/pymeshlab/pymeshlab/module_functions.cpp12 symbols
src/pymeshlab/pymeshlab/helpers/verbosity_manager.cpp11 symbols
src/pymeshlab/pymeshlab/helpers/common.h11 symbols
src/pymeshlab/pymeshlab/helpers/common.cpp7 symbols
src/pymeshlab/pymeshlab/exceptions.h6 symbols
src/pymeshlab/pymeshlab/helpers/verbosity_manager.h5 symbols
src/pymeshlab/pymeshlab/color.cpp5 symbols
src/pymeshlab/pymeshlab/bounding_box.cpp4 symbols

For agents

$ claude mcp add PyMeshLab \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page