skimage 0.17.2

ParametersReturnsBackRef
gabor_kernel(frequency, theta=0, bandwidth=1, sigma_x=None, sigma_y=None, n_stds=3, offset=0)

Gabor kernel is a Gaussian kernel modulated by a complex harmonic function. Harmonic function consists of an imaginary sine function and a real cosine function. Spatial frequency is inversely proportional to the wavelength of the harmonic and to the standard deviation of a Gaussian kernel. The bandwidth is also inversely proportional to the standard deviation.

Parameters

frequency : float

Spatial frequency of the harmonic function. Specified in pixels.

theta : float, optional

Orientation in radians. If 0, the harmonic is in the x-direction.

bandwidth : float, optional

The bandwidth captured by the filter. For fixed bandwidth, sigma_x and sigma_y will decrease with increasing frequency. This value is ignored if sigma_x and sigma_y are set by the user.

sigma_x, sigma_y : float, optional

Standard deviation in x- and y-directions. These directions apply to the kernel before rotation. If :None:None:`theta = pi/2`, then the kernel is rotated 90 degrees so that sigma_x controls the vertical direction.

n_stds : scalar, optional

The linear size of the kernel is n_stds (3 by default) standard deviations

offset : float, optional

Phase offset of harmonic function in radians.

Returns

g : complex array

Complex filter kernel.

Return complex 2D Gabor filter kernel.

Examples

This example is valid syntax, but we were not able to check execution
>>> from skimage.filters import gabor_kernel
... from skimage import io
... from matplotlib import pyplot as plt # doctest: +SKIP
This example is valid syntax, but we were not able to check execution
>>> gk = gabor_kernel(frequency=0.2)
... plt.figure() # doctest: +SKIP
... io.imshow(gk.real) # doctest: +SKIP
... io.show() # doctest: +SKIP
This example is valid syntax, but we were not able to check execution
>>> # more ripples (equivalent to increasing the size of the
... # Gaussian spread)
... gk = gabor_kernel(frequency=0.2, bandwidth=0.1)
... plt.figure() # doctest: +SKIP
... io.imshow(gk.real) # doctest: +SKIP
... io.show() # doctest: +SKIP
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

skimage.filters._gabor.gabor_kernel

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /skimage/filters/_gabor.py#16
type: <class 'function'>
Commit: