Implements the 3rd order odd kernel for the steerable pyramid. This
comes from Tables I and II of "Design and Use of Steerable Filters",
Freeman and Adelson.
A comment in their Matlab code says these old filters from their 1991
paper are not very accurate, but their newer, more accurate, filter generator
code was not included in the distribution.
The value of Scale in the code was determined empirically by minimizing
the mean square error beteen the old filters from 1991 paper and the new
filters in their Matlab code. This is not too important here since we're
not using this G3 kernel in the pyramid, but it's import since it helped
me calibrate the H3 filter which we are using.
Implements the 3rd order odd kernel for the steerable pyramid. This comes from Tables I and II of "Design and Use of Steerable Filters", Freeman and Adelson.
A comment in their Matlab code says these old filters from their 1991 paper are not very accurate, but their newer, more accurate, filter generator code was not included in the distribution.
The value of
Scale
in the code was determined empirically by minimizing the mean square error beteen the old filters from 1991 paper and the new filters in their Matlab code. This is not too important here since we're not using this G3 kernel in the pyramid, but it's import since it helped me calibrate the H3 filter which we are using.