mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file
Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
58
ParaView-5.0.1/VTK/Examples/VisualizationAlgorithms/Python/imageWarp.py
Executable file
58
ParaView-5.0.1/VTK/Examples/VisualizationAlgorithms/Python/imageWarp.py
Executable file
@ -0,0 +1,58 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# This example shows how to combine data from both the imaging and
|
||||
# graphics pipelines. The vtkMergeFilter is used to merge the data
|
||||
# from each together.
|
||||
|
||||
import vtk
|
||||
from vtk.util.misc import vtkGetDataRoot
|
||||
VTK_DATA_ROOT = vtkGetDataRoot()
|
||||
|
||||
# Read in an image and compute a luminance value. The image is
|
||||
# extracted as a set of polygons (vtkImageDataGeometryFilter). We then
|
||||
# will warp the plane using the scalar (luminance) values.
|
||||
reader = vtk.vtkBMPReader()
|
||||
reader.SetFileName(VTK_DATA_ROOT + "/Data/masonry.bmp")
|
||||
luminance = vtk.vtkImageLuminance()
|
||||
luminance.SetInputConnection(reader.GetOutputPort())
|
||||
geometry = vtk.vtkImageDataGeometryFilter()
|
||||
geometry.SetInputConnection(luminance.GetOutputPort())
|
||||
warp = vtk.vtkWarpScalar()
|
||||
warp.SetInputConnection(geometry.GetOutputPort())
|
||||
warp.SetScaleFactor(-0.1)
|
||||
|
||||
# Use vtkMergeFilter to combine the original image with the warped
|
||||
# geometry.
|
||||
merge = vtk.vtkMergeFilter()
|
||||
merge.SetGeometryConnection(warp.GetOutputPort())
|
||||
merge.SetScalarsConnection(reader.GetOutputPort())
|
||||
mapper = vtk.vtkDataSetMapper()
|
||||
mapper.SetInputConnection(merge.GetOutputPort())
|
||||
mapper.SetScalarRange(0, 255)
|
||||
mapper.ImmediateModeRenderingOff()
|
||||
actor = vtk.vtkActor()
|
||||
actor.SetMapper(mapper)
|
||||
|
||||
# Create renderer stuff
|
||||
ren = vtk.vtkRenderer()
|
||||
renWin = vtk.vtkRenderWindow()
|
||||
renWin.AddRenderer(ren)
|
||||
iren = vtk.vtkRenderWindowInteractor()
|
||||
iren.SetRenderWindow(renWin)
|
||||
|
||||
# Add the actors to the renderer, set the background and size
|
||||
ren.AddActor(actor)
|
||||
ren.ResetCamera()
|
||||
ren.GetActiveCamera().Azimuth(20)
|
||||
ren.GetActiveCamera().Elevation(30)
|
||||
ren.SetBackground(0.1, 0.2, 0.4)
|
||||
ren.ResetCameraClippingRange()
|
||||
|
||||
renWin.SetSize(250, 250)
|
||||
|
||||
cam1 = ren.GetActiveCamera()
|
||||
cam1.Zoom(1.4)
|
||||
|
||||
iren.Initialize()
|
||||
renWin.Render()
|
||||
iren.Start()
|
||||
Reference in New Issue
Block a user