-
Hello PyMeshLab Team! What do you think it would take to be able to use pymeshlab inside a container spawned from the latest ubuntu image (or something like that). Is this possible? I am currently attempting to do it with xvfb but would appreciate any suggestions. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
Hi @bdf-imbio! |
Beta Was this translation helpful? Give feedback.
-
It is possible to export u3d files with pymeshlab in a container but it requires installing the IDTFConverter tool manually. Here is a Dockerfile with the requisite dependencies and steps:
Build an image from the Dockerfile with Spawn a container from said image with From the container prompt, launch import pymeshlab as ml
ms = ml.MeshSet()
ms.load_new_mesh('your.mesh')
...
ms.save_current_mesh('your_mesh.u3d') You should now have a Thanks to @Sea421 for figuring out the Note that at this time, color Also, at some point the steps above related to installing the |
Beta Was this translation helpful? Give feedback.
It is possible to export u3d files with pymeshlab in a container but it requires installing the IDTFConverter tool manually.
Here is a Dockerfile with the requisite dependencies and steps: