1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
package require vtk
package require vtkinteraction
# demonstrate labeling of contour with scalar value
# Create the RenderWindow, Renderer and both Actors
#
vtkRenderer ren1
vtkRenderWindow renWin
renWin AddRenderer ren1
vtkRenderWindowInteractor iren
iren SetRenderWindow renWin
# Read a slice and contour it
vtkVolume16Reader v16
v16 SetDataDimensions 64 64
[v16 GetOutput] SetOrigin 0.0 0.0 0.0
v16 SetDataByteOrderToLittleEndian
v16 SetFilePrefix "$VTK_DATA_ROOT/Data/headsq/quarter"
v16 SetImageRange 45 45
v16 SetDataSpacing 3.2 3.2 1.5
vtkContourFilter iso
iso SetInputConnection [v16 GetOutputPort]
iso GenerateValues 6 500 1150
iso Update
set numPts [[iso GetOutput] GetNumberOfPoints]
vtkPolyDataMapper isoMapper
isoMapper SetInputConnection [iso GetOutputPort]
isoMapper ScalarVisibilityOn
eval isoMapper SetScalarRange [[iso GetOutput] GetScalarRange]
vtkActor isoActor
isoActor SetMapper isoMapper
# Subsample the points and label them
vtkMaskPoints mask
mask SetInputConnection [iso GetOutputPort]
mask SetOnRatio [expr $numPts / 50]
mask SetMaximumNumberOfPoints 50
mask RandomModeOn
# Create labels for points - only show visible points
vtkSelectVisiblePoints visPts
visPts SetInputConnection [mask GetOutputPort]
visPts SetRenderer ren1
vtkLabeledDataMapper ldm
ldm SetInputConnection [mask GetOutputPort]
ldm SetLabelFormat "%g"
ldm SetLabelModeToLabelScalars
set tprop [ldm GetLabelTextProperty]
$tprop SetFontFamilyToArial
$tprop SetFontSize 10
$tprop SetColor 1 0 0
vtkActor2D contourLabels
contourLabels SetMapper ldm
# Add the actors to the renderer, set the background and size
#
ren1 AddActor2D isoActor
ren1 AddActor2D contourLabels
ren1 SetBackground 1 1 1
renWin SetSize 500 500
renWin Render
[ren1 GetActiveCamera] Zoom 1.5
# render the image
#
iren AddObserver UserEvent {wm deiconify .vtkInteract}
# prevent the tk window from showing up then start the event loop
wm withdraw .
|