I tried the simplest sample of Pymeshlab but there is a Exception.
import pymeshlab
ms = pymeshlab.MeshSet()
ms.load_new_mesh('test.obj')
ms.generate_convex_hull()
ms.save_current_mesh('convex_hull.ply')
File "main.py", line 7, in <module>
ms.save_current_mesh('convex_hull.ply')
pymeshlab.pmeshlab.PyMeshLabException
The Exception is strange. It contains nothing.
My obj file is normal. My python version is 3.11.2
Can anyone tell me how to handle it?