20 from __future__
import print_function
21 from __future__
import division
23 import SimpleITK
as sitk
29 print(
"Usage: FFTConvolution <input> <kernel> <output>")
32 inputFileName = sys.argv[1]
33 kernelFileName = sys.argv[2]
34 outputFileName = sys.argv[3]
42 pixelID = img.GetPixelID()
61 kernel =
sitk.Cast(kernel / stats.GetSum(), sitk.sitkFloat32)
64 upadding[0] = int(math.floor((size[0] - kernel.GetSize()[0]) / 2.0))
65 upadding[1] = int(math.floor((size[1] - kernel.GetSize()[1]) / 2.0))
68 lpadding[0] = int(math.ceil((size[0] - kernel.GetSize()[0]) / 2.0))
69 lpadding[1] = int(math.ceil((size[1] - kernel.GetSize()[1]) / 2.0))
78 fftkernel.SetSpacing(fftimg.GetSpacing())
79 fftkernel.SetOrigin(fftimg.GetOrigin())
80 fftkernel.SetDirection(fftimg.GetDirection())
87 img =
sitk.Crop(img, [128] * 2, [128] * 2)
93 if (
"SITK_NOSHOW" not in os.environ):
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...
Compute min, max, variance and mean of an Image .
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...
Image Cast(const Image &image, PixelIDValueEnum pixelID)
Image Crop(const Image &image1, std::vector< unsigned int > lowerBoundaryCropSize=std::vector< unsigned int >(3, 0), std::vector< unsigned int > upperBoundaryCropSize=std::vector< unsigned int >(3, 0))
Decrease the image size by cropping the image by an itk::Size at both the upper and lower bounds of t...
Image Flip(const Image &image1, std::vector< bool > flipAxes=std::vector< bool >(3, false), bool flipAboutOrigin=false)
Flips an image across user specified axes.
Image ForwardFFT(const Image &image1)
Base class for forward Fast Fourier Transform .
Image InverseFFT(const Image &image1)
Base class for inverse Fast Fourier Transform .
Image MirrorPad(const Image &image1, std::vector< unsigned int > padLowerBound=std::vector< unsigned int >(3, 0), std::vector< unsigned int > padUpperBound=std::vector< unsigned int >(3, 0), double decayBase=1.0)
Increase the image size by padding with replicants of the input image value.
Image ConstantPad(const Image &image1, std::vector< unsigned int > padLowerBound=std::vector< unsigned int >(3, 0), std::vector< unsigned int > padUpperBound=std::vector< unsigned int >(3, 0), double constant=0.0)
Increase the image size by padding with a constant value.
Image FFTShift(const Image &image1, bool inverse=false)
Shift the zero-frequency components of a Fourier transform to the center of the image.