Exemplo n.º 1
0
# Load a vtkImageData (tif stack) and convert on the the fly to an isosurface.
# Invoke a tool to cut off parts of a mesh
# Press X to save the mesh or to add new cut planes
#
from vtkplotter import Plotter


vp = Plotter(axes=4)

act = vp.load('data/embryo.tif', c='blue')

vp.addCutterTool(act)

vp.show()
Exemplo n.º 2
0
"""
Load a Volume (tif stack).
Invoke a tool to cut off parts of it.
"""
print(__doc__)

from vtkplotter import Plotter, datadir

vp = Plotter()

vol = vp.load(datadir+"embryo.tif")

vp.addCutterTool(vol)
vp.show()