SimpleITK  2.0.0
FastMarchingSegmentation/FastMarchingSegmentation.py
1 #!/usr/bin/env python
2 # =========================================================================
3 #
4 # Copyright NumFOCUS
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0.txt
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # =========================================================================
19 
20 from __future__ import print_function
21 
22 import SimpleITK as sitk
23 import sys
24 
25 if len(sys.argv) < 10:
26  print("Usage:", sys.argv[0],
27  " <inputImage> <outputImage> <seedX> <seedY> <Sigma>",
28  "<SigmoidAlpha> <SigmoidBeta> <TimeThreshold>")
29  sys.exit(1)
30 
31 inputFilename = sys.argv[1]
32 outputFilename = sys.argv[2]
33 
34 seedPosition = (int(sys.argv[3]), int(sys.argv[4]))
35 
36 sigma = float(sys.argv[5])
37 alpha = float(sys.argv[6])
38 beta = float(sys.argv[7])
39 timeThreshold = float(sys.argv[8])
40 stoppingTime = float(sys.argv[9])
41 
42 inputImage = sitk.ReadImage(inputFilename, sitk.sitkFloat32)
43 
44 print(inputImage)
45 
47 smoothing.SetTimeStep(0.125)
48 smoothing.SetNumberOfIterations(5)
49 smoothing.SetConductanceParameter(9.0)
50 smoothingOutput = smoothing.Execute(inputImage)
51 
53 gradientMagnitude.SetSigma(sigma)
54 gradientMagnitudeOutput = gradientMagnitude.Execute(smoothingOutput)
55 
56 sigmoid = sitk.SigmoidImageFilter()
57 sigmoid.SetOutputMinimum(0.0)
58 sigmoid.SetOutputMaximum(1.0)
59 sigmoid.SetAlpha(alpha)
60 sigmoid.SetBeta(beta)
61 sigmoid.DebugOn()
62 sigmoidOutput = sigmoid.Execute(gradientMagnitudeOutput)
63 
64 fastMarching = sitk.FastMarchingImageFilter()
65 
66 seedValue = 0
67 trialPoint = (seedPosition[0], seedPosition[1], seedValue)
68 
69 fastMarching.AddTrialPoint(trialPoint)
70 
71 fastMarching.SetStoppingValue(stoppingTime)
72 
73 fastMarchingOutput = fastMarching.Execute(sigmoidOutput)
74 
75 thresholder = sitk.BinaryThresholdImageFilter()
76 thresholder.SetLowerThreshold(0.0)
77 thresholder.SetUpperThreshold(timeThreshold)
78 thresholder.SetOutsideValue(0)
79 thresholder.SetInsideValue(255)
80 
81 result = thresholder.Execute(fastMarchingOutput)
82 
83 sitk.WriteImage(result, outputFilename)
itk::simple::SigmoidImageFilter
Computes the sigmoid function pixel-wise.
Definition: sitkSigmoidImageFilter.h:46
itk::simple::WriteImage
SITKIO_EXPORT void WriteImage(const Image &image, const std::vector< std::string > &fileNames, bool useCompression=false, int compressionLevel=-1)
WriteImage is a procedural interface to the ImageSeriesWriter. class which is convenient for many ima...
itk::simple::ReadImage
SITKIO_EXPORT Image ReadImage(const std::vector< std::string > &fileNames, PixelIDValueEnum outputPixelType=sitkUnknown, const std::string &imageIO="")
ReadImage is a procedural interface to the ImageSeriesReader class which is convenient for most image...
itk::simple::FastMarchingImageFilter
Solve an Eikonal equation using Fast Marching.
Definition: sitkFastMarchingImageFilter.h:69
itk::simple::GradientMagnitudeRecursiveGaussianImageFilter
Computes the Magnitude of the Gradient of an image by convolution with the first derivative of a Gaus...
Definition: sitkGradientMagnitudeRecursiveGaussianImageFilter.h:42
itk::simple::BinaryThresholdImageFilter
Binarize an input image by thresholding.
Definition: sitkBinaryThresholdImageFilter.h:50
itk::simple::CurvatureAnisotropicDiffusionImageFilter
Definition: sitkCurvatureAnisotropicDiffusionImageFilter.h:60