Gabor filter

From HandWiki
Short description: Linear filter used for texture analysis
Example of a two-dimensional Gabor filter

In image processing, a Gabor filter, named after Dennis Gabor, who first proposed it as a 1D filter.[1] The Gabor filter was first generalized to 2D by Gösta Granlund,[2] by adding a reference direction. The Gabor filter is a linear filter used for texture analysis, which essentially means that it analyzes whether there is any specific frequency content in the image in specific directions in a localized region around the point or region of analysis. Frequency and orientation representations of Gabor filters are claimed by many contemporary vision scientists to be similar to those of the human visual system.[3] They have been found to be particularly appropriate for texture representation and discrimination. In the spatial domain, a 2D Gabor filter is a Gaussian kernel function modulated by a sinusoidal plane wave (see Gabor transform).

Some authors claim that simple cells in the visual cortex of mammalian brains can be modeled by Gabor functions.[4][5] Thus, image analysis with Gabor filters is thought by some to be similar to perception in the human visual system.

Definition

Its impulse response is defined by a sinusoidal wave (a plane wave for 2D Gabor filters) multiplied by a Gaussian function.[6] Because of the multiplication-convolution property (Convolution theorem), the Fourier transform of a Gabor filter's impulse response is the convolution of the Fourier transform of the harmonic function (sinusoidal function) and the Fourier transform of the Gaussian function. The filter has a real and an imaginary component representing orthogonal directions.[7] The two components may be formed into a complex number or used individually.

Complex

[math]\displaystyle{ g(x,y;\lambda,\theta,\psi,\sigma,\gamma) = \exp\left(-\frac{x'^2+\gamma^2y'^2}{2\sigma^2}\right)\exp\left(i\left(2\pi\frac{x'}{\lambda}+\psi\right)\right) }[/math]

Real

[math]\displaystyle{ g(x,y;\lambda,\theta,\psi,\sigma,\gamma) = \exp\left(-\frac{x'^2+\gamma^2y'^2}{2\sigma^2}\right)\cos\left(2\pi\frac{x'}{\lambda}+\psi\right) }[/math]

Imaginary

[math]\displaystyle{ g(x,y;\lambda,\theta,\psi,\sigma,\gamma) = \exp\left(-\frac{x'^2+\gamma^2y'^2}{2\sigma^2}\right)\sin\left(2\pi\frac{x'}{\lambda}+\psi\right) }[/math]

where [math]\displaystyle{ x' = x \cos\theta + y \sin\theta }[/math] and [math]\displaystyle{ y' = -x \sin\theta + y \cos\theta }[/math].

In this equation, [math]\displaystyle{ \lambda }[/math] represents the wavelength of the sinusoidal factor, [math]\displaystyle{ \theta }[/math] represents the orientation of the normal to the parallel stripes of a Gabor function, [math]\displaystyle{ \psi }[/math] is the phase offset, [math]\displaystyle{ \sigma }[/math] is the sigma/standard deviation of the Gaussian envelope and [math]\displaystyle{ \gamma }[/math] is the spatial aspect ratio, and specifies the ellipticity of the support of the Gabor function.

Wavelet space

Demonstration of a Gabor filter applied to Chinese OCR. Four orientations are shown on the right 0°, 45°, 90° and 135°. The original character picture and the superposition of all four orientations are shown on the left.

Gabor filters are directly related to Gabor wavelets, since they can be designed for a number of dilations and rotations. However, in general, expansion is not applied for Gabor wavelets, since this requires computation of bi-orthogonal wavelets, which may be very time-consuming. Therefore, usually, a filter bank consisting of Gabor filters with various scales and rotations is created. The filters are convolved with the signal, resulting in a so-called Gabor space. This process is closely related to processes in the primary visual cortex.[8] Jones and Palmer showed that the real part of the complex Gabor function is a good fit to the receptive field weight functions found in simple cells in a cat's striate cortex.[9]

Time-causal analogue of the Gabor filter

When processing temporal signals, data from the future cannot be accessed, which leads to problems if attempting to use Gabor functions for processing real-time signals that depend on the temporal dimension. A time-causal analogue of the Gabor filter has been developed in [10] based on replacing the Gaussian kernel in the Gabor function with a time-causal and time-recursive kernel referred to as the time-causal limit kernel. In this way, time-frequency analysis based on the resulting complex-valued extension of the time-causal limit kernel makes it possible to capture essentially similar transformations of a temporal signal as the Gabor filter can, and as can be described by the Heisenberg group, see [10] for further details.

Extraction of features from images

A set of Gabor filters with different frequencies and orientations may be helpful for extracting useful features from an image.[11] In the discrete domain, two-dimensional Gabor filters are given by,

[math]\displaystyle{ G_c[i,j] = B e^{-\frac{(i^2+j^2)}{2\sigma^2}} \cos(2\pi f(i\cos\theta+j\sin\theta)) }[/math]
[math]\displaystyle{ G_s[i,j] = C e^{-\frac{(i^2+j^2)}{2\sigma^2}} \sin(2\pi f(i\cos\theta+j\sin\theta)) }[/math]

where B and C are normalizing factors to be determined.

2D Gabor filters have rich applications in image processing, especially in feature extraction for texture analysis and segmentation.[12] [math]\displaystyle{ f }[/math] defines the frequency being looked for in the texture. By varying [math]\displaystyle{ \theta }[/math], we can look for texture oriented in a particular direction. By varying [math]\displaystyle{ \sigma }[/math], we change the support of the basis or the size of the image region being analyzed.

Applications of 2D Gabor filters in image processing

In document image processing, Gabor features are ideal for identifying the script of a word in a multilingual document.[13] Gabor filters with different frequencies and with orientations in different directions have been used to localize and extract text-only regions from complex document images (both gray and colour), since text is rich in high frequency components, whereas pictures are relatively smooth in nature.[14][15][16] It has also been applied for facial expression recognition [17] Gabor filters have also been widely used in pattern analysis applications. For example, it has been used to study the directionality distribution inside the porous spongy trabecular bone in the spine.[18] The Gabor space is very useful in image processing applications such as optical character recognition, iris recognition and fingerprint recognition. Relations between activations for a specific spatial location are very distinctive between objects in an image. Furthermore, important activations can be extracted from the Gabor space in order to create a sparse object representation.


Example implementations

This is an example implementation in Python:

import numpy as np


def gabor(sigma, theta, Lambda, psi, gamma):
    """Gabor feature extraction."""
    sigma_x = sigma
    sigma_y = float(sigma) / gamma

    # Bounding box
    nstds = 3  # Number of standard deviation sigma
    xmax = max(
        abs(nstds * sigma_x * np.cos(theta)), abs(nstds * sigma_y * np.sin(theta))
    )
    xmax = np.ceil(max(1, xmax))
    ymax = max(
        abs(nstds * sigma_x * np.sin(theta)), abs(nstds * sigma_y * np.cos(theta))
    )
    ymax = np.ceil(max(1, ymax))
    xmin = -xmax
    ymin = -ymax
    (y, x) = np.meshgrid(np.arange(ymin, ymax + 1), np.arange(xmin, xmax + 1))

    # Rotation
    x_theta = x * np.cos(theta) + y * np.sin(theta)
    y_theta = -x * np.sin(theta) + y * np.cos(theta)

    gb = np.exp(
        -0.5 * (x_theta**2 / sigma_x**2 + y_theta**2 / sigma_y**2)
    ) * np.cos(2 * np.pi / Lambda * x_theta + psi)
    return gb

For an implementation on images, see [1].

This is an example implementation in MATLAB/Octave:

function gb=gabor_fn(sigma, theta, lambda, psi, gamma)

sigma_x = sigma;
sigma_y = sigma / gamma;

% Bounding box
nstds = 3;
xmax = max(abs(nstds * sigma_x * cos(theta)), abs(nstds * sigma_y * sin(theta)));
xmax = ceil(max(1, xmax));
ymax = max(abs(nstds * sigma_x * sin(theta)), abs(nstds * sigma_y * cos(theta)));
ymax = ceil(max(1, ymax));
xmin = -xmax; ymin = -ymax;
[x,y] = meshgrid(xmin:xmax, ymin:ymax);

% Rotation 
x_theta = x * cos(theta) + y * sin(theta);
y_theta = -x * sin(theta) + y * cos(theta);

gb = exp(-.5*(x_theta.^2/sigma_x^2+y_theta.^2/sigma_y^2)).*cos(2*pi/lambda*x_theta+psi);

Code for Gabor feature extraction from images in MATLAB can be found at http://www.mathworks.com/matlabcentral/fileexchange/44630.

This is another example implementation in Haskell:

import Data.Complex
gabor λ θ ψ σ γ x y = exp(-(x'^2 + γ^2 * y'^2) / (2*σ^2)) * exp(i * (2*pi*x'/λ + ψ))
    where x' =  x * cos θ + y * sin θ
          y' = -x * sin θ + y * cos θ
          i  = 0 :+ 1

See also

References

  1. Gabor, D. (1946). "Theory of communication.". J. Inst. Electr. Eng. 93. 
  2. Granlund G. H. (1978). "In Search of a General Picture Processing Operator.". Computer Graphics and Image Processing 8 (2): 155–173. doi:10.1016/0146-664X(78)90047-3. ISSN 0146-664X. 
  3. Olshausen, B. A. & Field, D. J. (1996). "Emergence of simple-cell receptive-field properties by learning a sparse code for natural images.". Nature 381 (6583): 607–609. doi:10.1038/381607a0. PMID 8637596. Bibcode1996Natur.381..607O. 
  4. Marčelja, S. (1980). "Mathematical description of the responses of simple cortical cells". Journal of the Optical Society of America 70 (11): 1297–1300. doi:10.1364/JOSA.70.001297. PMID 7463179. Bibcode1980JOSA...70.1297M. 
  5. Daugman, John G. (1985-07-01). "Uncertainty relation for resolution in space, spatial frequency, and orientation optimized by two-dimensional visual cortical filters" (in en). Journal of the Optical Society of America A 2 (7): 1160–9. doi:10.1364/JOSAA.2.001160. ISSN 1084-7529. PMID 4020513. Bibcode1985JOSAA...2.1160D. 
  6. Fogel, I.; Sagi, D. (June 1989). "Gabor filters as texture discriminator" (in en). Biological Cybernetics 61 (2): 103–113. doi:10.1007/BF00204594. ISSN 0340-1200. OCLC 895625214. 
  7. 3D surface tracking and approximation using Gabor filters, Jesper Juul Henriksen, South Denmark University, March 28, 2007
  8. Daugman, J.G. (1980), "Two-dimensional spectral analysis of cortical receptive field profiles", Vision Res. 20 (10): 847–56, doi:10.1016/0042-6989(80)90065-6, PMID 7467139 
  9. Jones, J.P.; Palmer, L.A. (1987). "An evaluation of the two-dimensional gabor filter model of simple receptive fields in cat striate cortex". J. Neurophysiol. 58 (6): 1233–1258. doi:10.1152/jn.1987.58.6.1233. PMID 3437332. http://pdfs.semanticscholar.org/0dbf/797d5b34f40d16eeadfa7a5b4543c2af2c11.pdf. 
  10. 10.0 10.1 Lindeberg, T. (23 January 2023). "A time-causal and time-recursive scale-covariant scale-space representation of temporal signals and past time". Biological Cybernetics 117 (1–2): 21–59. doi:10.1007/s00422-022-00953-6. PMID 36689001. 
  11. Haghighat, M.; Zonouz, S.; Abdel-Mottaleb, M. (2013). "Identification Using Encrypted Biometrics". Computer Analysis of Images and Patterns. Lecture Notes in Computer Science. 8048. pp. 440–448. doi:10.1007/978-3-642-40246-3_55. ISBN 978-3-642-40245-6. 
  12. Ramakrishnan, A.G.; Kumar Raja, S.; Raghu Ram, H.V. (2002). "Neural network-based segmentation of textures using Gabor features". Proceedings of the 12th IEEE Workshop on Neural Networks for Signal Processing. Martigny, Switzerland: IEEE. pp. 365–374. doi:10.1109/NNSP.2002.1030048. ISBN 978-0-7803-7616-8. OCLC 812617471. http://eprints.iisc.ac.in/5152/1/neural_networks.pdf. 
  13. Pati, Peeta Basa; Ramakrishnan, A.G. (July 2008). "Word level multi-script identification" (in en). Pattern Recognition Letters 29 (9): 1218–1229. doi:10.1016/j.patrec.2008.01.027. ISSN 0167-8655. Bibcode2008PaReL..29.1218P. 
  14. Raju S, S.; Pati, P.B.; Ramakrishnan, A.G. (2004). "Gabor filter based block energy analysis for text extraction from digital document images". First International Workshop on Document Image Analysis for Libraries, 2004. Proceedings.. Palo Alto, CA, USA: IEEE. pp. 233–243. doi:10.1109/DIAL.2004.1263252. ISBN 978-0-7695-2088-9. http://eprints.iisc.ac.in/490/1/Gabor_Filter_Based_Block_Engery_Analy...pdf. 
  15. Raju, S. Sabari; Pati, P. B.; Ramakrishnan, A. G. (2005). "Text Localization and Extraction from Complex Color Images". Advances in Visual Computing. Lecture Notes in Computer Science. 3804. pp. 486–493. doi:10.1007/11595755_59. ISBN 978-3-540-30750-1. https://archive.org/details/advancesvisualco00bebi_320. 
  16. S Sabari Raju, P B Pati and A G Ramakrishnan, “Text Localization and Extraction from Complex Color Images,” Proc. First International Conference on Advances in Visual Computing (ISVC05), Nevada, USA, LNCS 3804, Springer Verlag, Dec. 5-7, 2005, pp. 486-493.
  17. Lyons, M.; Akamatsu, S.; Kamachi, M.; Gyoba, J. (1998). "Coding facial expressions with Gabor wavelets". Proceedings Third IEEE International Conference on Automatic Face and Gesture Recognition. pp. 200–205. doi:10.1109/AFGR.1998.670949. ISBN 0-8186-8344-9. https://zenodo.org/record/3430156. 
  18. Gdyczynski, C.M.Expression error: Unrecognized word "etal". (2014). "On estimating the directionality distribution in pedicle trabecular bone from micro-CT images". Physiological Measurement 35 (12): 2415–2428. doi:10.1088/0967-3334/35/12/2415. PMID 25391037. Bibcode2014PhyM...35.2415G. 

External links

Further reading