-
-
Save thewtex/8263132 to your computer and use it in GitHub Desktop.
| #!/usr/bin/env python | |
| """Convert UnstructuredGrid in .vtk files to STL files.""" | |
| import sys | |
| import vtk | |
| if len(sys.argv) < 2 or sys.argv[1] == '-h' or sys.argv[1] == '--help': | |
| print('Usage: vtk-unstructuredgrid-to-stl.py <input.vtk> <output.stl>') | |
| sys.exit(1) | |
| reader = vtk.vtkUnstructuredGridReader() | |
| reader.SetFileName(sys.argv[1]) | |
| surface_filter = vtk.vtkDataSetSurfaceFilter() | |
| surface_filter.SetInputConnection(reader.GetOutputPort()) | |
| triangle_filter = vtk.vtkTriangleFilter() | |
| triangle_filter.SetInputConnection(surface_filter.GetOutputPort()) | |
| writer = vtk.vtkSTLWriter() | |
| writer.SetFileName(sys.argv[2]) | |
| writer.SetInputConnection(triangle_filter.GetOutputPort()) | |
| writer.Write() |
It's not fixed
@nschloe I am trying to convert a vtu to stl but i have a problem
import meshio
infile='Eprouvette_15_Displacement000000.vtu'
outfile = 'test.stl'
meshio._cli.convert(
[infile, outfile, "--input-format", "vtu-ascii", "--output-format", "stl-ascii"]
)
and I get this message:
SystemExit: 2
/usr/local/lib/python3.7/dist-packages/IPython/core/interactiveshell.py:2890: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D.
warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1)``
It's impossible to debug this from the just the message. If you find something doesn't work, best file a bug in meshio and attach an MWE.
Nowadays it is meshio convert in.vtk out.stl
I am using the command to convert vtk to stl, but I am getting the error:
STL can only write triangle cells. No triangle cells found.
@bragostin Ah yes, fixed that now. Will be part of the next release.