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 86 87 88 89 90 91 92 93 94
|
#!/usr/bin/env python
## Program: VMTK
## Module: $RCSfile: vmtkbifurcationprofiles.py,v $
## Language: Python
## Date: $Date: 2006/10/17 15:16:16 $
## Version: $Revision: 1.1 $
## 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.
import vtk
import vtkvmtk
import sys
import pypes
vmtkbifurcationprofiles = 'vmtkBifurcationProfiles'
class vmtkBifurcationProfiles(pypes.pypeScript):
def __init__(self):
pypes.pypeScript.__init__(self)
self.Surface = None
self.Centerlines = None
self.BifurcationProfiles = None
self.RadiusArrayName = ''
self.GroupIdsArrayName = ''
self.CenterlineIdsArrayName = ''
self.TractIdsArrayName = ''
self.BlankingArrayName = ''
self.BifurcationProfileGroupIdsArrayName = 'BifurcationProfileGroupIds'
self.BifurcationProfileBifurcationGroupIdsArrayName = 'BifurcationProfileBifurcationGroupIds'
self.BifurcationProfileOrientationArrayName = 'BifurcationProfileOrientation'
self.SetScriptName('vmtkbifurcationprofiles')
self.SetScriptDoc('compute bifurcation profiles, i.e. the bifurcation splitting lines. The script takes in input the surface and the relative centerlines, both already split into branches.')
self.SetInputMembers([
['Surface','i','vtkPolyData',1,'','the input surface, already split into branches','vmtksurfacereader'],
['Centerlines','centerlines','vtkPolyData',1,'','the input centerlines, already split into branches','vmtksurfacereader'],
['RadiusArrayName','radiusarray','str',1,'','name of the array where centerline radius is stored'],
['GroupIdsArrayName','groupidsarray','str',1,'','name of the array where centerline group ids are stored'],
['CenterlineIdsArrayName','centerlineidsarray','str',1,'','name of the array where centerline ids are stored'],
['TractIdsArrayName','tractidsarray','str',1,'','name of the array where centerline tract ids are stored'],
['BlankingArrayName','blankingarray','str',1,'','name of the array where centerline blanking information about branches is stored'],
['BifurcationProfileGroupIdsArrayName','bifurcationprofilegroupids','str',1,'','name of the array where the group id to which each profile belongs has to be stored'],
['BifurcationProfileBifurcationGroupIdsArrayName','bifurcationprofilebifurcationgroupids','str',1,'','name of the array where the bifurcation group id to which each profile belongs has to be stored'],
['BifurcationProfileOrientationArrayName','bifurcationprofileorientation','str',1,'','name of the array containing 0 if a profile is upstream and 0 downstream its bifurcation']
])
self.SetOutputMembers([
['BifurcationProfiles','o','vtkPolyData',1,'','the output sections','vmtksurfacewriter'],
['BifurcationProfileGroupIdsArrayName','bifurcationprofilegroupids','str',1,'','name of the array where the group id to which each profile belongs are stored'],
['BifurcationProfileBifurcationGroupIdsArrayName','bifurcationprofilebifurcationgroupids','str',1,'','name of the array where the bifurcation group id to which each profile belongs has to be stored'],
['BifurcationProfileOrientationArrayName','bifurcationprofileorientation','str',1,'','name of the array containing 0 if a profile is upstream and 0 downstream its bifurcation']
])
def Execute(self):
if self.Surface == None:
self.PrintError('Error: No input surface.')
if self.Centerlines == None:
self.PrintError('Error: No input centerlines.')
bifurcationProfiles = vtkvmtk.vtkvmtkPolyDataBifurcationProfiles()
bifurcationProfiles.SetInput(self.Surface)
bifurcationProfiles.SetGroupIdsArrayName(self.GroupIdsArrayName)
bifurcationProfiles.SetCenterlines(self.Centerlines)
bifurcationProfiles.SetCenterlineRadiusArrayName(self.RadiusArrayName)
bifurcationProfiles.SetCenterlineGroupIdsArrayName(self.GroupIdsArrayName)
bifurcationProfiles.SetCenterlineIdsArrayName(self.CenterlineIdsArrayName)
bifurcationProfiles.SetCenterlineTractIdsArrayName(self.TractIdsArrayName)
bifurcationProfiles.SetBlankingArrayName(self.BlankingArrayName)
bifurcationProfiles.SetBifurcationProfileGroupIdsArrayName(self.BifurcationProfileGroupIdsArrayName)
bifurcationProfiles.SetBifurcationProfileBifurcationGroupIdsArrayName(self.BifurcationProfileBifurcationGroupIdsArrayName)
bifurcationProfiles.SetBifurcationProfileOrientationArrayName(self.BifurcationProfileOrientationArrayName)
bifurcationProfiles.Update()
self.BifurcationProfiles = bifurcationProfiles.GetOutput()
if __name__=='__main__':
main = pypes.pypeMain()
main.Arguments = sys.argv
main.Execute()
|