Ask Your Question
4

How to intuitively interpret Gabor lambda param?

asked 2012-08-02 05:03:08 -0600

sammy gravatar image

updated 2012-08-02 05:04:01 -0600

I am playing with the newly added Gabor filters. I know some basics about them, and how they are used for recognition tasks. But I have troubles understanding in an intuitive way (not by writing complicated math formulas) what is the meaning of the lambda parameter.

Here is the formula, from Wiki:

image description

And here are some pictures, where I varied lambda:

lambda = CV_PI

image description

lambda = CV_PI/2

image description

lambda = CV_PI/4

image description

The other parameters are as follows:

gaborKernel = getGaborKernel( cv::Size(15, 15) , 3, -CV_PI/4, lambda, 1, CV_PI, CV_32F );
edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
6

answered 2012-08-03 02:59:22 -0600

sammy gravatar image

updated 2012-08-07 02:44:04 -0600

I was able to decode the strange behavior of the Gabor functions by keeping the other parameters constant in a more favorable position; This way, as seen from the graphic, the lambda parameter controls the frequency of the sinusoidal function that composes the kernel.

Conclusion: it controls the harmonic's frequency.

Edit

This gorgeous answer from two math scholars shed some light on the strange pattern seen in the second graph. It's all about small details... here, numerical stability. Setting lambda to bigger values ( > 2) solves the issue. The comments are as useful as the post.

image description

Bonus: The other parameters explained for non-math students:

psi - shift, in radians of the sinusoidal from center.

  • 0 means that the max value in in center (symetrical, max positive)
  • CV_PI/2 means that the max and min crescents are at the sides of the center (antisymetrical) - as in the above example
  • CV_PI - min (negative value) in center (symetrical, max negative)

gamma - how elongated the filter is in the lateral direction. Seem to be the complement for the gaussian sigma, in the lateral direction. Note that low values mean elongated filters. 1 seem to a good default value.

sigma the good old sigma from the gaussian distribution. Controls the spread (radius)of the kernel

theta The rotation angle of the kernel. This way, you can select vertical stripes, horizontal stripes, or any other angle. It is the parameter of choice if you want to select, by example, edges at a given angle in an image. If you look for edges at 45 degrees, your gabor kernel will have to have a theta of pi/4

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2012-08-02 05:03:08 -0600

Seen: 4,593 times

Last updated: Aug 07 '12