SimpleITK  2.0.0
Python/FFTConvolution.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 from __future__ import division
22 
23 import SimpleITK as sitk
24 import sys
25 import os
26 import math
27 
28 if len(sys.argv) < 4:
29  print("Usage: FFTConvolution <input> <kernel> <output>")
30  sys.exit(1)
31 
32 inputFileName = sys.argv[1]
33 kernelFileName = sys.argv[2]
34 outputFileName = sys.argv[3]
35 
36 # -- Input Image --
37 # read the input image
38 img = sitk.ReadImage(inputFileName)
39 
40 # save the type of pixel the input is, so that we can cast the result
41 # back out to the same type
42 pixelID = img.GetPixelID()
43 
44 # pad the image
45 img = sitk.MirrorPad(img, [128] * 2, [128] * 2)
46 size = img.GetSize()
47 
48 # perform the FFT
49 fftimg = sitk.ForwardFFT(sitk.Cast(img, sitk.sitkFloat32))
50 
51 # -- Kernel Image --
52 # Read the kernel image file
53 kernel = sitk.ReadImage(kernelFileName)
54 
55 # flip kernel about all axis
56 kernel = sitk.Flip(kernel, [True] * 2)
57 
58 # normalize the kernel to sum to ~1
60 stats.Execute(kernel)
61 kernel = sitk.Cast(kernel / stats.GetSum(), sitk.sitkFloat32)
62 
63 upadding = [0] * 2
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))
66 
67 lpadding = [0] * 2
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))
70 
71 # pad the kernel to prevent edge artifacts
72 kernel = sitk.ConstantPad(kernel, upadding, lpadding, 0.0)
73 
74 # perform FFT on kernel
75 fftkernel = sitk.ForwardFFT(sitk.FFTShift(kernel))
76 
77 # meta-data must match for multiplication
78 fftkernel.SetSpacing(fftimg.GetSpacing())
79 fftkernel.SetOrigin(fftimg.GetOrigin())
80 fftkernel.SetDirection(fftimg.GetDirection())
81 
82 # -- Convolution --
83 # Finally perform the convolution in Fourier space by multiplication
84 img = sitk.InverseFFT(fftimg * fftkernel)
85 
86 # remove the padding
87 img = sitk.Crop(img, [128] * 2, [128] * 2)
88 
89 # -- Writing --
90 # write the output image the same type as the input
91 sitk.WriteImage(sitk.Cast(img, pixelID), outputFileName)
92 
93 if ("SITK_NOSHOW" not in os.environ):
94  sitk.Show(sitk.ReadImage(inputFileName), "original")
95  sitk.Show(sitk.ReadImage(kernelFileName), "kernel")
96  sitk.Show(sitk.Cast(img, pixelID), "FFT_Convolution")
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::StatisticsImageFilter
Compute min, max, variance and mean of an Image .
Definition: sitkStatisticsImageFilter.h:46
itk::simple::Show
void SITKIO_EXPORT Show(const Image &image, const std::string &title="", const bool debugOn=ProcessObject::GetGlobalDefaultDebug())
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::Cast
Image Cast(const Image &image, PixelIDValueEnum pixelID)
itk::simple::Crop
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...
itk::simple::Flip
Image Flip(const Image &image1, std::vector< bool > flipAxes=std::vector< bool >(3, false), bool flipAboutOrigin=false)
Flips an image across user specified axes.
itk::simple::ForwardFFT
Image ForwardFFT(const Image &image1)
Base class for forward Fast Fourier Transform .
itk::simple::InverseFFT
Image InverseFFT(const Image &image1)
Base class for inverse Fast Fourier Transform .
itk::simple::MirrorPad
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.
itk::simple::ConstantPad
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.
itk::simple::FFTShift
Image FFTShift(const Image &image1, bool inverse=false)
Shift the zero-frequency components of a Fourier transform to the center of the image.