Skip to content
Snippets Groups Projects
Commit e6fc7378 authored by Andrew Maclean's avatar Andrew Maclean
Browse files

Adding FastSplatter

parent cda037e1
No related branches found
No related tags found
1 merge request!382Adding CheckerboardWidget
......@@ -464,6 +464,7 @@ See [this tutorial](http://www.vtk.org/Wiki/VTK/Tutorials/3DDataTypes) for a bri
[CurvaturesNormalsElevations](/PythonicAPI/Visualization/CurvaturesNormalsElevations) | Gaussian and Mean curvatures of a surface with arrows colored by elevation to display the normals.
[DataSetSurface](/PythonicAPI/VisualizationAlgorithms/DataSetSurface) | Cutting a hexahedron with a plane. The red line on the surface shows the cut.
[DisplacementPlot](/PythonicAPI/VisualizationAlgorithms/DisplacementPlot) | Show modal lines for a vibrating beam.
[FastSplatter](/PythonicAPI/Visualization/FastSplatter) | Convolve a splat image with every point in an input image.
[FlyingHeadSlice](/PythonicAPI/VisualizationAlgorithms/FlyingHeadSlice) | Flying edges used to generate contour lines.
[FroggieSurface](/PythonicAPI/Visualization/FroggieSurface) | Construct surfaces from a segmented frog dataset. Up to fifteen different surfaces may be extracted. You can turn on and off surfaces and control the camera position.
[FroggieView](/PythonicAPI/Visualization/FroggieView) | View surfaces of a segmented frog dataset using preprocessed `*.vtk` tissue files. You can turn on and off surfaces, control their opacity through the use of sliders and control the camera position.
......
# !/usr/bin/env python3
# noinspection PyUnresolvedReferences
import vtkmodules.vtkInteractionStyle
# noinspection PyUnresolvedReferences
import vtkmodules.vtkRenderingOpenGL2
from vtkmodules.util.execution_model import select_ports
from vtkmodules.vtkCommonColor import vtkNamedColors
from vtkmodules.vtkCommonCore import (
VTK_FLOAT,
vtkPoints
)
from vtkmodules.vtkCommonDataModel import (
vtkImageData,
vtkPolyData
)
from vtkmodules.vtkImagingCore import vtkImageShiftScale
from vtkmodules.vtkImagingHybrid import vtkFastSplatter
from vtkmodules.vtkInteractionImage import vtkImageViewer2
from vtkmodules.vtkRenderingCore import (
vtkRenderWindowInteractor
)
def main():
colors = vtkNamedColors()
# For the purposes of this example we'll build the splat image by hand.
splat_image_size = 100
splat_image = vtkImageData(dimensions=(splat_image_size, splat_image_size, 1))
splat_image.AllocateScalars(VTK_FLOAT, 1)
for i in range(0, splat_image_size):
for j in range(0, splat_image_size):
x_coord = 1 - abs((i - splat_image_size / 2) / (splat_image_size / 2.0))
y_coord = 1 - abs((j - splat_image_size / 2) / (splat_image_size / 2.0))
splat_image.SetScalarComponentFromDouble(i, j, 0, 0, x_coord * y_coord)
points = vtkPoints(number_of_points=5)
points.SetPoint(0, (0, 0, 0))
points.SetPoint(1, (1, 1, 0))
points.SetPoint(2, (-1, 1, 0))
points.SetPoint(3, (1, -1, 0))
points.SetPoint(4, (-1, -1, 0))
splat_points = vtkPolyData(points=points)
splatter = vtkFastSplatter(output_dimensions=(2 * splat_image_size, 2 * splat_image_size, 1))
splat_points >> select_ports(0, splatter)
splat_image >> select_ports(1, splatter)
# The image viewers and writers are only happy with unsigned char
# images. This will convert the floats into that format.
result_scale = vtkImageShiftScale(shift=0, scale=255)
result_scale.SetOutputScalarTypeToUnsignedChar()
splatter >> result_scale
# Set up a viewer for the image. vtkImageViewer and
# vtkImageViewer2 are convenient wrappers around vtkActor2D,
# vtkImageMapper, vtkRenderer, and vtkRenderWindow. All you need
# to supply is the interactor and hooray, Bob's your uncle.
image_viewer = vtkImageViewer2(color_level=127, color_window=255, input_data=result_scale.update().output)
iren = vtkRenderWindowInteractor()
image_viewer.SetupInteractor(iren)
image_viewer.Render()
image_viewer.GetRenderer().background = colors.GetColor3d('SlateGray')
image_viewer.GetRenderer().ResetCamera()
image_viewer.GetRenderWindow().window_name = 'FastSplatter'
image_viewer.Render()
iren.Start()
if __name__ == '__main__':
main()
src/Testing/Baseline/PythonicAPI/Visualization/TestFastSplatter.png

129 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment