Kalpana Kalpana (Editor)

Gaussian filter

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Gaussian filter

In electronics and signal processing, a Gaussian filter is a filter whose impulse response is a Gaussian function (or an approximation to it). Gaussian filters have the properties of having no overshoot to a step function input while minimizing the rise and fall time. This behavior is closely connected to the fact that the Gaussian filter has the minimum possible group delay. It is considered the ideal time domain filter, just as the sinc is the ideal frequency domain filter. These properties are important in areas such as oscilloscopes and digital telecommunication systems.

Contents

Mathematically, a Gaussian filter modifies the input signal by convolution with a Gaussian function; this transformation is also known as the Weierstrass transform.

Definition

The one-dimensional Gaussian filter has an impulse response given by

g ( x ) = a π e a x 2

and the frequency response is given by the Fourier transform

g ^ ( f ) = e π 2 f 2 a

with f the ordinary frequency. These equations can also be expressed with the standard deviation as parameter

g ( x ) = 1 2 π σ e x 2 2 σ 2

and the frequency response is given by

g ^ ( f ) = e f 2 2 σ f 2

By writing a as a function of σ with the two equations for g ( x ) and as a function of σ f with the two equations for g ^ ( f ) it can be shown that the product of the standard deviation and the standard deviation in the frequency domain is given by

σ σ f = 1 2 π ,

where the standard deviations are expressed in their physical units, e.g. in the case of time and frequency in seconds and Hertz.

In two dimensions, it is the product of two such Gaussians, one per direction:

g ( x , y ) = 1 2 π σ 2 e x 2 + y 2 2 σ 2

where x is the distance from the origin in the horizontal axis, y is the distance from the origin in the vertical axis, and σ is the standard deviation of the Gaussian distribution.

Digital implementation

The Gaussian function is for x ( , ) and would theoretically require an infinite window length. However, since it decays rapidly, it is often reasonable to truncate the filter window and implement the filter directly for narrow windows, in effect by using a simple rectangular window function. In other cases, the truncation may introduce significant errors. Better results can be achieved by instead using a different window function; see scale space implementation for details.

Filtering involves convolution. The filter function is said to be the kernel of an integral transform. The Gaussian kernel is continuous. Most commonly, the discrete equivalent is the sampled Gaussian kernel that is produced by sampling points from the continuous Gaussian. An alternate method is to use the discrete Gaussian kernel which has superior characteristics for some purposes. Unlike the sampled Gaussian kernel, the discrete Gaussian kernel is the solution to the discrete diffusion equation.

Since the Fourier transform of the Gaussian function yields a Gaussian function, the signal (preferably after being divided into overlapping windowed blocks) can be transformed with a Fast Fourier transform, multiplied with a Gaussian function and transformed back. This is the standard procedure of applying an arbitrary finite impulse response filter, with the only difference that the Fourier transform of the filter window is explicitly known.

Due to the central limit theorem, the Gaussian can be approximated by several runs of a very simple filter such as the moving average. The simple moving average corresponds to convolution with the constant B-spline ( a rectangular pulse ), and, for example, four iterations of a moving average yields a cubic B-spline as filter window which approximates the Gaussian quite well.

In the discrete case the standard deviations are related by

σ σ f = N 2 π ,

where the standard deviations are expressed in number of samples and N is the total number of samples. Borrowing the terms from statistics, the standard deviation of a filter can be interpreted as a measure of its size. The cut-off frequency of a Gaussian filter might be defined by the standard deviation in the frequency domain yielding

f c = σ f = 1 2 π σ ,

where all quantities are expressed in their physical units. If σ is measured in samples the cut-off frequency (in physical units) can be calculated with

f c = F s 2 π σ ,

where F s is the sample rate. The response value of the Gaussian filter at this cut-off frequency equals exp(-0.5)≈0.607.

However, it is more common to define the cut-off frequency as the half power point: where the filter response is reduced to 0.5 ( -3 dB ) in the power spectrum, or 1/2 ≈ 0.707 in the amplitude spectrum (see e.g. Butterworth filter). For an arbitrary cut-off value 1/c for the response of the filter the cut-off frequency is given by

f c = 2 ln ( c ) σ f

For c=2 the constant before the standard deviation in the frequency domain in the last equation equals approximately 1.1774, which is half the Full Width at Half Maximum (FWHM) (see Gaussian function). For c=2 this constant equals approximately 0.8326. These values are quite close to 1.

A simple moving average corresponds to a uniform probability distribution and thus its filter width of size n has standard deviation ( n 2 1 ) / 12 . Thus the application of successive m moving averages with sizes n 1 , , n m yield a standard deviation of

σ = n 1 2 + + n m 2 m 12 .

(Note that standard deviations do not sum up, but variances do.)

A gaussian kernel requires 6 σ 1 values, e.g. for a σ of 3 it needs a kernel of length 17. A running mean filter of 5 points will have a sigma of 2 . Running it three times will give a σ of 2.42. It remains to be seen where the advantage is over using a gaussian rather than a poor approximation.

When applied in two dimensions, this formula produces a Gaussian surface that has a maximum at the origin, whose contours are concentric circles with the origin as center. A two dimensional convolution matrix is precomputed from the formula and convolved with two dimensional data. Each element in the resultant matrix new value is set to a weighted average of that elements neighborhood. The focal element receives the heaviest weight (having the highest Gaussian value) and neighboring elements receive smaller weights as their distance to the focal element increases. In Image processing, each element in the matrix represents a pixel attribute such as brightness or a color intensity, and the overall effect is called Gaussian blur.

The Gaussian filter is non-causal which means the filter window is symmetric about the origin in the time-domain. This makes the Gaussian filter physically unrealizable. This is usually of no consequence for applications where the filter bandwidth is much larger than the signal. In real-time systems, a delay is incurred because incoming samples need to fill the filter window before the filter can be applied to the signal. While no amount of delay can make a theoretical Gaussian filter causal (because the Gaussian function is non-zero everywhere), the Gaussian function converges to zero so rapidly that a causal approximation can achieve any required tolerance with a modest delay, even to the accuracy of floating point representation.

Applications

  • GSM since it applies GMSK modulation
  • the Gaussian filter is also used in GFSK.
  • Canny Edge Detector used in image processing.
  • References

    Gaussian filter Wikipedia