SimpleITK  
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 
21 import SimpleITK as sitk
22 import sys
23 
24 if len(sys.argv) < 10:
25  print(
26  "Usage:",
27  sys.argv[0],
28  " <inputImage> <outputImage> <seedX> <seedY> <Sigma>",
29  "<SigmoidAlpha> <SigmoidBeta> <TimeThreshold>",
30  )
31  sys.exit(1)
32 
33 inputFilename = sys.argv[1]
34 outputFilename = sys.argv[2]
35 
36 seedPosition = (int(sys.argv[3]), int(sys.argv[4]))
37 
38 sigma = float(sys.argv[5])
39 alpha = float(sys.argv[6])
40 beta = float(sys.argv[7])
41 timeThreshold = float(sys.argv[8])
42 stoppingTime = float(sys.argv[9])
43 
44 inputImage = sitk.ReadImage(inputFilename, sitk.sitkFloat32)
45 
46 print(inputImage)
47 
49 smoothing.SetTimeStep(0.125)
50 smoothing.SetNumberOfIterations(5)
51 smoothing.SetConductanceParameter(9.0)
52 smoothingOutput = smoothing.Execute(inputImage)
53 
55 gradientMagnitude.SetSigma(sigma)
56 gradientMagnitudeOutput = gradientMagnitude.Execute(smoothingOutput)
57 
58 sigmoid = sitk.SigmoidImageFilter()
59 sigmoid.SetOutputMinimum(0.0)
60 sigmoid.SetOutputMaximum(1.0)
61 sigmoid.SetAlpha(alpha)
62 sigmoid.SetBeta(beta)
63 sigmoid.DebugOn()
64 sigmoidOutput = sigmoid.Execute(gradientMagnitudeOutput)
65 
66 fastMarching = sitk.FastMarchingImageFilter()
67 
68 seedValue = 0
69 trialPoint = (seedPosition[0], seedPosition[1], seedValue)
70 
71 fastMarching.AddTrialPoint(trialPoint)
72 
73 fastMarching.SetStoppingValue(stoppingTime)
74 
75 fastMarchingOutput = fastMarching.Execute(sigmoidOutput)
76 
77 thresholder = sitk.BinaryThresholdImageFilter()
78 thresholder.SetLowerThreshold(0.0)
79 thresholder.SetUpperThreshold(timeThreshold)
80 thresholder.SetOutsideValue(0)
81 thresholder.SetInsideValue(255)
82 
83 result = thresholder.Execute(fastMarchingOutput)
84 
85 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
This filter performs anisotropic diffusion on a scalar itk::Image using the modified curvature diffus...
Definition: sitkCurvatureAnisotropicDiffusionImageFilter.h:60