Gaussian and Difference of Gaussian Pyramid¶
Author: Johannes Maucher
Last Update: 28th January 2021
In the previous sections two important applications of Gaussian filters, bluring and noise suppression, have been introduced. Another frequent application is to construct Gaussian and Laplacian pyramides. Pyramides are used to generate different sizes of an images. The levels in a pyramid differ in their scale. Different scales are required for example for implementing scale-invariant recognition. This will be elaborated in detail in the later section on SIFT features.
A Gaussian pyramide is constructed as follows:
Set level index l=0; Set Gl=0 to be the original image
Smooth Gl by applying a Gaussian filter
Downsample the smoothed Gl by a factor of 2. The result is Gl+1
Set l=l+1 and continue with step 2 until Gl contains only a single pixel

Image Source: [Sze10]
In the Gaussian pyramid in each level the input image is low pass filtered. Thus in each level finer structures (higher frequencies) are filtered out. At high levels l only coarse structures (low frequencies) are represented in Gl. The Difference at level l
represents the high frequencies which are filtered out in level l, where G↑l+1 is the upsampled (interpolated) version of Gl+1. The pyramide of all Dl constitute the Laplacian Pyramid.
Image Source: [Sze10]
Spectrum of 1-dimensional Gaussian and Difference Of Gaussian Filter¶
Below the spectrum of
the 3 different 1-dimensional Gaussian filters G0,G1 and G2
the Difference of Gaussian (DoG) D1=G1−G↑2 and D2=G2−G↑3
is plotted:
Function for calculating and plotting the spectral representation of a signal:
The function below calculates the single-sided amplitude spectrum of a 1-dimensional time domain signal y. The sampling frequency Fs is required for a correct scaling of the frequency-axis in the plot.
def plotSpectrum(y,Fs,title=""):
"""
Plots a Single-Sided Amplitude Spectrum of y(t)
"""
n = len(y) # length of the signal
k = np.arange(n)
T = n/Fs
frq = k/T # two sides frequency range
frq = frq[range(int(n/2))] # one side frequency range
Y = sf.fft(y)/n # fft computing and normalization
Y = Y[range(int(n/2))]
plt.stem(frq,abs(Y),'r') # plotting the spectrum
plt.title(title)
plt.xlabel('Freq (Hz)')
plt.ylabel('|Y(freq)|')
Define 1-dimensional Gaussian filter:
Plot signal, filter and filtered signal in time- and frequency domain:
Fs = 200.0; # sampling rate
Ts = 1.0/Fs; # sampling interval
tf=np.arange(-0.5,0.5,Ts) # time vector for filter
filtTitle="Gaussian Filter"
sig=0.005
m=0.0
plt.figure(num=None, figsize=(16,18), dpi=80, facecolor='w', edgecolor='k')
plt.subplot(3,3,1)
filt1=calcGaussian(tf,m,sig)
plt.plot(tf,filt1)
plt.title(filtTitle + " G1, Sigma = "+str(sig))
plt.xlabel('Time')
plt.ylabel('Amplitude')
ymargin=0.05
ymin,ymax=plt.ylim()
plt.ylim(ymin-ymargin,ymax+ymargin)
plt.subplot(3,3,2)
filt2=calcGaussian(tf,m,2*sig)
plt.plot(tf,filt2)
plt.title(filtTitle + " G2, Sigma = "+str(2*sig))
plt.xlabel('Time')
plt.ylabel('Amplitude')
ymargin=0.05
ymin,ymax=plt.ylim()
plt.ylim(ymin-ymargin,ymax+ymargin)
plt.subplot(3,3,3)
filt3=calcGaussian(tf,m,4*sig)
plt.plot(tf,filt3)
plt.title(filtTitle + " G3, Sigma = "+str(4*sig))
plt.xlabel('Time')
plt.ylabel('Amplitude')
ymargin=0.05
ymin,ymax=plt.ylim()
plt.ylim(ymin-ymargin,ymax+ymargin)
plt.subplot(3,3,4)
plotSpectrum(filt1,Fs,title="Spectrum of "+filtTitle+ " G1 Sigma = "+str(sig))
plt.subplot(3,3,5)
plotSpectrum(filt2,Fs,title="Spectrum of "+filtTitle+ " G2 Sigma = "+str(2*sig))
plt.subplot(3,3,6)
plotSpectrum(filt3,Fs,title="Spectrum of "+filtTitle+ " G3 Sigma = "+str(4*sig))
plt.subplot(3,3,8)
plotSpectrum(filt2-filt1,Fs,title="Spectrum of DoG D1=G1-G2")
plt.subplot(3,3,9)
plotSpectrum(filt3-filt2,Fs,title="Spectrum of DOG D2=G2-G3")

Gaussian Pyramide and Laplacian Pyramide of Images¶
Below the Gaussian- and the Laplacian Pyramide of a given image is calculated and visualized. For the calculations of the pyramids the functions pyramid_gaussian()
and pyramid_laplacian()
from scikit-image are applied.

Calculate Gaussian- and Laplacian Pyramide:
Visualize the pyramids:

In the left column of the picture above the Gaussian pyramide, in the right column the Laplacian pyramide is shown (both upsidedown).