You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
package require vtk
|
|
|
|
# Shift and scale an image (in that order)
|
|
# This filter is usefull for converting to a lower precision data type.
|
|
# This script tests the clamp overflow feature.
|
|
|
|
vtkImageReader reader
|
|
[reader GetOutput] ReleaseDataFlagOff
|
|
reader SetDataByteOrderToLittleEndian
|
|
reader SetDataExtent 0 63 0 63 1 93
|
|
reader SetFilePrefix "$VTK_DATA_ROOT/Data/headsq/quarter"
|
|
reader SetDataMask 0x7fff
|
|
|
|
vtkImageShiftScale shiftScale
|
|
shiftScale SetInputConnection [reader GetOutputPort]
|
|
shiftScale SetShift -1000.0
|
|
shiftScale SetScale 4.0
|
|
shiftScale SetOutputScalarTypeToUnsignedShort
|
|
shiftScale ClampOverflowOn
|
|
|
|
vtkImageShiftScale shiftScale2
|
|
shiftScale2 SetInputConnection [shiftScale GetOutputPort]
|
|
shiftScale2 SetShift 0
|
|
shiftScale2 SetScale 2.0
|
|
|
|
vtkImageMagnify mag
|
|
mag SetInputConnection [shiftScale2 GetOutputPort]
|
|
mag SetMagnificationFactors 4 4 1
|
|
mag InterpolateOff
|
|
|
|
vtkImageViewer viewer
|
|
viewer SetInputConnection [mag GetOutputPort]
|
|
viewer SetColorWindow 1024
|
|
viewer SetColorLevel 512
|
|
|
|
#make interface
|
|
source [file join [file dirname [info script]] WindowLevelInterface.tcl]
|
|
|