Skip to content

Instantly share code, notes, and snippets.

@thewtex
Created January 5, 2014 01:28
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save thewtex/8263132 to your computer and use it in GitHub Desktop.
Save thewtex/8263132 to your computer and use it in GitHub Desktop.
Convert a .vtk UnstructuredGrid file to .stl file.
#!/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()
@nschloe
Copy link

nschloe commented Apr 12, 2021

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.

@GRASBOCK
Copy link

Nowadays it is meshio convert in.vtk out.stl

@SiriusFuenmayor
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment