ITK  5.0.0
Insight Segmentation and Registration Toolkit
SphinxExamples/src/Filtering/AnisotropicSmoothing/ComputeCurvatureFlow/Code.py
1 #!/usr/bin/env python
2 
3 # Copyright Insight Software Consortium
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0.txt
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 
17 import itk
18 import sys
19 
20 if len(sys.argv) != 5:
21  print("Usage: " + sys.argv[0] + " <inputImage> <outputImage> "
22  "<numberOfIterations> <timeStep>")
23  sys.exit(1)
24 
25 inputImage = sys.argv[1]
26 outputImage = sys.argv[2]
27 numberOfIterations = int(sys.argv[3])
28 timeStep = float(sys.argv[4])
29 
30 InputPixelType = itk.F
31 OutputPixelType = itk.UC
32 Dimension = 2
33 
34 InputImageType = itk.Image[InputPixelType, Dimension]
35 OutputImageType = itk.Image[OutputPixelType, Dimension]
36 
37 ReaderType = itk.ImageFileReader[InputImageType]
38 reader = ReaderType.New()
39 reader.SetFileName(inputImage)
40 
41 FilterType = itk.CurvatureFlowImageFilter[
42  InputImageType, InputImageType]
43 curvatureFlowFilter = FilterType.New()
44 
45 curvatureFlowFilter.SetInput(reader.GetOutput())
46 curvatureFlowFilter.SetNumberOfIterations(numberOfIterations)
47 curvatureFlowFilter.SetTimeStep(timeStep)
48 
49 RescaleFilterType = itk.RescaleIntensityImageFilter[
50  InputImageType, OutputImageType]
51 rescaler = RescaleFilterType.New()
52 rescaler.SetInput(curvatureFlowFilter.GetOutput())
53 
54 outputPixelTypeMinimum = itk.NumericTraits[OutputPixelType].min()
55 outputPixelTypeMaximum = itk.NumericTraits[OutputPixelType].max()
56 
57 rescaler.SetOutputMinimum(outputPixelTypeMinimum)
58 rescaler.SetOutputMaximum(outputPixelTypeMaximum)
59 
60 WriterType = itk.ImageFileWriter[OutputImageType]
61 writer = WriterType.New()
62 writer.SetFileName(outputImage)
63 writer.SetInput(rescaler.GetOutput())
64 
65 writer.Update()