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 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#!/usr/bin/env python
## Program: VMTK
## Module: $RCSfile: vtkvmtkImageCurvedMPR.py,v $
## Language: Python
## Date: $Date: 2008/02/12 13.44 $
## Version: $Revision: 1.0 $
## Copyright (c) Luca Antiga, David Steinman. All rights reserved.
## See LICENCE file for details.
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notices for more information.
## Note: this class was contributed by
## Hugo Gratama van Andel
## Academic Medical Centre - University of Amsterdam
## Dept. Biomedical Engineering & Physics
import vtk
import sys
import vtkvmtk
import vmtkrenderer
import pypes
vmtkimagecurvedmpr = 'vmtkImageCurvedMPR'
class vmtkImageCurvedMPR(pypes.pypeScript):
def __init__(self):
pypes.pypeScript.__init__(self)
self.Image = None
self.Centerlines = None
self.NormalsArrayName = 'ParallelTransportNormals'
self.FrenetTangentArrayName = 'FrenetTangent'
self.InplaneOutputSize = 100
self.InplaneOutputSpacing = 1.0
self.ReslicingBackgroundLevel = 0.0
self.SetScriptName('vtkvmtkimagecurvedmpr')
self.SetScriptDoc('Make an MPR image from a centerline and an input image')
self.SetInputMembers([
['Image','i','vtkImageData',1,'','the input image','vmtkimagereader'],
['Centerlines','centerlines','vtkPolyData',1,'','the input centerlines','vmtksurfacereader'],
['NormalsArrayName','normalsarray','str',1,'','name of the array where parallel transport normals to the centerlines are stored'],
['InplaneOutputSize','size','int',1,'(1,)','size of the square in pixels that each resulting MPR image should have'],
['ReslicingBackgroundLevel','background','float',1,'','value of the pixels in the mpr image that are outside of the inputimage'],
['InplaneOutputSpacing','spacing','float',1,'(0.001,)','spacing between the pixels in the output MPR images'],
['FrenetTangentArrayName','frenettangentarray','str',1,'','name of the array where tangent vectors of the Frenet reference system are stored']
])
self.SetOutputMembers([
['Image','o','vtkImageData',1,'','the output image','vmtkimagewriter']])
def Execute(self):
if self.Image == None:
self.PrintError('Error: No input image.')
if self.Centerlines == None:
self.PrintError('Error: No input centerlines.')
curvedMPRImageFilter = vtkvmtk.vtkvmtkCurvedMPRImageFilter()
curvedMPRImageFilter.SetInput(self.Image)
curvedMPRImageFilter.SetCenterline(self.Centerlines)
curvedMPRImageFilter.SetParallelTransportNormalsArrayName(self.NormalsArrayName)
curvedMPRImageFilter.SetFrenetTangentArrayName(self.FrenetTangentArrayName)
curvedMPRImageFilter.SetInplaneOutputSpacing(self.InplaneOutputSpacing, self.InplaneOutputSpacing)
curvedMPRImageFilter.SetInplaneOutputSize(self.InplaneOutputSize, self.InplaneOutputSize)
curvedMPRImageFilter.SetReslicingBackgroundLevel(self.ReslicingBackgroundLevel)
curvedMPRImageFilter.Update()
self.Image = curvedMPRImageFilter.GetOutput()
if __name__=='__main__':
main = pypes.pypeMain()
main.Arguments = sys.argv
main.Execute()
|