forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge topic 'Point-Density-Gradient'
5bbd84e Added capability to compute gradient Acked-by: Kitware Robot <[email protected]> Reviewed-by: Andrew Maclean <[email protected]> Merge-request: !2096
- Loading branch information
Showing
5 changed files
with
342 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
Filters/Points/Testing/Data/Baseline/TestPointDensityGradient.png.md5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
c6d0ac5938cc2feb88eed6d499334316 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
159 changes: 159 additions & 0 deletions
159
Filters/Points/Testing/Python/TestPointDensityGradient.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
#!/usr/bin/env python | ||
import vtk | ||
from vtk.test import Testing | ||
from vtk.util.misc import vtkGetDataRoot | ||
VTK_DATA_ROOT = vtkGetDataRoot() | ||
|
||
# The resolution of the density function volume | ||
res = 100 | ||
|
||
# Parameters for debugging | ||
NPts = 1000000 | ||
math = vtk.vtkMath() | ||
math.RandomSeed(31415) | ||
|
||
# create pipeline | ||
# | ||
points = vtk.vtkBoundedPointSource() | ||
points.SetNumberOfPoints(NPts) | ||
points.ProduceRandomScalarsOn() | ||
points.ProduceCellOutputOff() | ||
points.Update() | ||
|
||
# Create a sphere implicit function | ||
sphere = vtk.vtkSphere() | ||
sphere.SetCenter(0.0,0.1,0.2) | ||
sphere.SetRadius(0.75) | ||
|
||
# Extract points within sphere | ||
extract = vtk.vtkFitImplicitFunction() | ||
extract.SetInputConnection(points.GetOutputPort()) | ||
extract.SetImplicitFunction(sphere) | ||
extract.SetThreshold(0.005) | ||
extract.GenerateVerticesOn() | ||
|
||
# Clip out some of the points with a plane; requires vertices | ||
plane = vtk.vtkPlane() | ||
plane.SetOrigin(sphere.GetCenter()) | ||
plane.SetNormal(1,1,1) | ||
|
||
clipper = vtk.vtkClipPolyData() | ||
clipper.SetInputConnection(extract.GetOutputPort()) | ||
clipper.SetClipFunction(plane); | ||
|
||
# Generate density field from points | ||
# Use fixed radius | ||
dens0 = vtk.vtkPointDensityFilter() | ||
dens0.SetInputConnection(clipper.GetOutputPort()) | ||
dens0.SetSampleDimensions(res,res,res) | ||
dens0.SetDensityEstimateToFixedRadius() | ||
dens0.SetRadius(0.05) | ||
#dens0.SetDensityEstimateToRelativeRadius() | ||
dens0.SetRelativeRadius(2.5) | ||
#dens0.SetDensityFormToVolumeNormalized() | ||
dens0.SetDensityFormToNumberOfPoints() | ||
dens0.ComputeGradientOn() | ||
dens0.Update() | ||
vrange = dens0.GetOutput().GetPointData().GetArray("Gradient Magnitude").GetRange() | ||
|
||
# Show the gradient magnitude | ||
assign0 = vtk.vtkAssignAttribute() | ||
assign0.SetInputConnection(dens0.GetOutputPort()) | ||
assign0.Assign("Gradient Magnitude", "SCALARS", "POINT_DATA") | ||
|
||
map0 = vtk.vtkImageSliceMapper() | ||
map0.BorderOn() | ||
map0.SliceAtFocalPointOn() | ||
map0.SliceFacesCameraOn() | ||
map0.SetInputConnection(assign0.GetOutputPort()) | ||
|
||
slice0 = vtk.vtkImageSlice() | ||
slice0.SetMapper(map0) | ||
slice0.GetProperty().SetColorWindow(vrange[1]-vrange[0]) | ||
slice0.GetProperty().SetColorLevel(0.5*(vrange[0]+vrange[1])) | ||
|
||
# Show the region labels | ||
assign1 = vtk.vtkAssignAttribute() | ||
assign1.SetInputConnection(dens0.GetOutputPort()) | ||
assign1.Assign("Classification", "SCALARS", "POINT_DATA") | ||
|
||
map1 = vtk.vtkImageSliceMapper() | ||
map1.BorderOn() | ||
map1.SliceAtFocalPointOn() | ||
map1.SliceFacesCameraOn() | ||
map1.SetInputConnection(assign1.GetOutputPort()) | ||
map1.Update() | ||
|
||
slice1 = vtk.vtkImageSlice() | ||
slice1.SetMapper(map1) | ||
slice1.GetProperty().SetColorWindow(1) | ||
slice1.GetProperty().SetColorLevel(0.5) | ||
|
||
# Show the vectors (gradient) | ||
assign2 = vtk.vtkAssignAttribute() | ||
assign2.SetInputConnection(dens0.GetOutputPort()) | ||
assign2.Assign("Gradient", "VECTORS", "POINT_DATA") | ||
|
||
plane = vtk.vtkPlane() | ||
plane.SetNormal(0,0,1) | ||
plane.SetOrigin(0.0701652, 0.172689, 0.27271) | ||
|
||
cut = vtk.vtkFlyingEdgesPlaneCutter() | ||
cut.SetInputConnection(assign2.GetOutputPort()) | ||
cut.SetPlane(plane) | ||
cut.InterpolateAttributesOn() | ||
|
||
v = vtk.vtkHedgeHog() | ||
v.SetInputConnection(cut.GetOutputPort()) | ||
v.SetScaleFactor(0.0001) | ||
|
||
vMapper = vtk.vtkPolyDataMapper() | ||
vMapper.SetInputConnection(v.GetOutputPort()) | ||
vMapper.SetScalarRange(vrange) | ||
|
||
vectors = vtk.vtkActor() | ||
vectors.SetMapper(vMapper) | ||
|
||
# Create the RenderWindow, Renderer and both Actors | ||
# | ||
ren0 = vtk.vtkRenderer() | ||
ren0.SetViewport(0,0,0.333,1) | ||
ren1 = vtk.vtkRenderer() | ||
ren1.SetViewport(0.333,0,0.667,1) | ||
ren2 = vtk.vtkRenderer() | ||
ren2.SetViewport(0.667,0,1,1) | ||
|
||
renWin = vtk.vtkRenderWindow() | ||
renWin.AddRenderer(ren0) | ||
renWin.AddRenderer(ren1) | ||
renWin.AddRenderer(ren2) | ||
iren = vtk.vtkRenderWindowInteractor() | ||
iren.SetRenderWindow(renWin) | ||
|
||
# Add the actors to the renderer, set the background and size | ||
# | ||
ren0.AddActor(slice0) | ||
ren0.SetBackground(0,0,0) | ||
ren1.AddActor(slice1) | ||
ren1.SetBackground(0,0,0) | ||
ren2.AddActor(vectors) | ||
ren2.SetBackground(0,0,0) | ||
|
||
renWin.SetSize(450,150) | ||
|
||
cam = ren0.GetActiveCamera() | ||
cam.ParallelProjectionOn() | ||
cam.SetFocalPoint(0,0,0) | ||
cam.SetPosition(0,0,1) | ||
ren0.ResetCamera() | ||
|
||
ren1.SetActiveCamera(cam) | ||
ren2.SetActiveCamera(cam) | ||
|
||
iren.Initialize() | ||
|
||
# render the image | ||
# | ||
renWin.Render() | ||
|
||
#iren.Start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.