public class FactorySteerable extends Object
Creates different steerable kernels. Steerable kernels are kernels which can be computed at an arbitrary angle easily and efficiently using a set of bases.
| Constructor and Description |
|---|
FactorySteerable() |
| Modifier and Type | Method and Description |
|---|---|
static <K extends Kernel2D> |
gaussian(Class<K> kernelType,
int orderX,
int orderY,
double sigma,
int radius)
Steerable filter for 2D Gaussian derivatives.
|
public static <K extends Kernel2D> SteerableKernel<K> gaussian(Class<K> kernelType, int orderX, int orderY, double sigma, int radius)
kernelType - Specifies which type of 2D kernel should be generated.orderX - Order of the derivative in the x-axis.orderY - Order of the derivative in the y-axis.sigma - radius - Radius of the kernel. @return Steerable kernel generator for the specified gaussian derivative.Copyright © 2013. All Rights Reserved.