21 import SimpleITK
as sitk
27 "Usage: N4BiasFieldCorrection inputImage "
28 +
"outputImage [shrinkFactor] [maskImage] [numberOfIterations] "
29 +
"[numberOfFittingLevels]"
43 shrinkFactor = int(sys.argv[3])
46 inputImage, [shrinkFactor] * inputImage.GetDimension()
49 maskImage, [shrinkFactor] * inputImage.GetDimension()
54 numberFittingLevels = 4
57 numberFittingLevels = int(sys.argv[6])
60 corrector.SetMaximumNumberOfIterations(
61 [int(sys.argv[5])] * numberFittingLevels
64 corrected_image = corrector.Execute(image, maskImage)
67 log_bias_field = corrector.GetLogBiasFieldAsImage(inputImage)
69 corrected_image_full_resolution = inputImage /
sitk.Exp(log_bias_field)
75 corrected_image,
"Python-Example-N4BiasFieldCorrection-shrunk.nrrd"
78 if "SITK_NOSHOW" not in os.environ:
79 sitk.Show(corrected_image,
"N4 Corrected")
Image OtsuThreshold(const Image &image, uint8_t insideValue=1u, uint8_t outsideValue=0u, uint32_t numberOfHistogramBins=128u, bool maskOutput=true, uint8_t maskValue=255u, bool returnBinMidpoint=false)
Threshold an image using the Otsu Threshold.
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...
void SITKIO_EXPORT Show(const Image &image, const std::string &title="", const bool debugOn=ProcessObject::GetGlobalDefaultDebug())
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...
Implementation of the N4 bias field correction algorithm.
Image Shrink(const Image &image1, std::vector< unsigned int > shrinkFactors=std::vector< unsigned int >(3, 1))
Reduce the size of an image by an integer factor in each dimension.
Image Exp(const Image &image1)
Computes the exponential function of each pixel.