SimpleITK  2.0.0
Python/GeodesicActiceContourSegmentation.py
1 # =========================================================================
2 #
3 # Copyright NumFOCUS
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 # =========================================================================
18 
19 from __future__ import print_function
20 
21 import os
22 import sys
23 
24 import SimpleITK as sitk
25 
26 if len(sys.argv) < 8:
27  print("Usage:", sys.argv[0],
28  "<inputImage> <outputImage> <sigma> <InitialDistance>",
29  "<PropagationScaling> <seedX> <seedY> <?seedZ>")
30  sys.exit(1)
31 
32 inputImage = sys.argv[1]
33 outputImage = sys.argv[2]
34 sigma = float(sys.argv[3])
35 initialDistance = float(sys.argv[4])
36 propagationScaling = float(sys.argv[5])
37 seed = [float(sys.argv[6]), float(sys.argv[7])]
38 
39 if len(sys.argv) > 8:
40  seed.append(float(sys.argv[8]))
41 
42 reader = sitk.ImageFileReader()
43 reader.SetFileName(inputImage)
44 image = reader.Execute()
45 
47 gradientMagnitude.SetSigma(sigma)
48 
49 featureImage = sitk.BoundedReciprocal(gradientMagnitude.Execute(image))
50 
51 seedImage = sitk.Image(image.GetSize()[0], image.GetSize()[1], sitk.sitkUInt8)
52 seedImage.SetSpacing(image.GetSpacing())
53 seedImage.SetOrigin(image.GetOrigin())
54 seedImage.SetDirection(image.GetDirection())
55 seedImage[seedImage.TransformPhysicalPointToIndex(seed)] = 1
56 
58 distance.InsideIsPositiveOff()
59 distance.UseImageSpacingOn()
60 
61 initialImage = sitk.BinaryThreshold(distance.Execute(seedImage), -1000, 10)
62 initialImage = sitk.Cast(initialImage, featureImage.GetPixelID()) * -1 + 0.5
63 
64 geodesicActiveContour = sitk.GeodesicActiveContourLevelSetImageFilter()
65 geodesicActiveContour.SetPropagationScaling(propagationScaling)
66 geodesicActiveContour.SetCurvatureScaling(.5)
67 geodesicActiveContour.SetAdvectionScaling(1.0)
68 geodesicActiveContour.SetMaximumRMSError(0.01)
69 geodesicActiveContour.SetNumberOfIterations(1000)
70 
71 levelset = geodesicActiveContour.Execute(initialImage, featureImage)
72 
73 print("RMS Change: ", geodesicActiveContour.GetRMSChange())
74 print("Elapsed Iterations: ", geodesicActiveContour.GetElapsedIterations())
75 
76 contour = sitk.BinaryContour(sitk.BinaryThreshold(levelset, -1000, 0))
77 
78 if ("SITK_NOSHOW" not in os.environ):
79  sitk.Show(sitk.LabelOverlay(image, contour), "Levelset Countour")
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
itk::simple::BinaryThreshold
Image BinaryThreshold(const Image &image1, double lowerThreshold=0.0, double upperThreshold=255.0, uint8_t insideValue=1u, uint8_t outsideValue=0u)
Binarize an input image by thresholding.
itk::simple::Show
void SITKIO_EXPORT Show(const Image &image, const std::string &title="", const bool debugOn=ProcessObject::GetGlobalDefaultDebug())
itk::simple::ImageFileReader
Read an image file and return a SimpleITK Image.
Definition: sitkImageFileReader.h:60
itk::simple::Cast
Image Cast(const Image &image, PixelIDValueEnum pixelID)
itk::simple::BoundedReciprocal
Image BoundedReciprocal(const Image &image1)
Computes 1/(1+x) for each pixel in the image.
itk::simple::GeodesicActiveContourLevelSetImageFilter
Segments structures in images based on a user supplied edge potential map.
Definition: sitkGeodesicActiveContourLevelSetImageFilter.h:94
itk::simple::BinaryContour
Image BinaryContour(const Image &image1, bool fullyConnected=false, double backgroundValue=0.0, double foregroundValue=1.0)
Labels the pixels on the border of the objects in a binary image.
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::LabelOverlay
Image LabelOverlay(const Image &image, const Image &labelImage, double opacity=0.5, double backgroundValue=0.0, std::vector< uint8_t > colormap=std::vector< uint8_t >())
Apply a colormap to a label image and put it on top of the input image.
itk::simple::SignedMaurerDistanceMapImageFilter
This filter calculates the Euclidean distance transform of a binary image in linear time for arbitrar...
Definition: sitkSignedMaurerDistanceMapImageFilter.h:52