Package boofcv.factory.filter.kernel
Class FactorySteerCoefficients
java.lang.Object
boofcv.factory.filter.kernel.FactorySteerCoefficients
public class FactorySteerCoefficients extends Object
Coefficients for common steerable bases.
William T. Freeman and Edward H. Adelson, "The Design and Use of Steerable Filters", IEEE Trans. Patt. Anal. and Machine Intell., Vol. 13, No. 9, Sept. 1991
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FactorySteerCoefficients.PolyOrder1
static class
FactorySteerCoefficients.PolyOrder2
static class
FactorySteerCoefficients.PolyOrder3
static class
FactorySteerCoefficients.PolyOrder4
static class
FactorySteerCoefficients.Separable
-
Constructor Summary
Constructors Constructor Description FactorySteerCoefficients()
-
Method Summary
Modifier and Type Method Description static SteerableCoefficients
polynomial(int order)
Coefficients for even or odd parity polynomials.static SteerableCoefficients
separable(int order)
Coefficients for even or odd parity separable polynomials.
-
Constructor Details
-
FactorySteerCoefficients
public FactorySteerCoefficients()
-
-
Method Details
-
polynomial
Coefficients for even or odd parity polynomials.- Parameters:
order
- order of the polynomial.- Returns:
- Steering coeficient.
-
separable
Coefficients for even or odd parity separable polynomials.- Parameters:
order
- order of the polynomial.- Returns:
- Steering coeficient.
-