public class FactoryConvolve
extends java.lang.Object
| Constructor and Description |
|---|
FactoryConvolve() |
| Modifier and Type | Method and Description |
|---|---|
static <Input extends ImageGray,Output extends ImageGray> |
convolve(Kernel1D kernel,
java.lang.Class<Input> inputType,
java.lang.Class<Output> outputType,
BorderType border,
boolean isHorizontal)
Creates a filter for convolving 1D kernels along the image.
|
static <Input extends ImageGray,Output extends ImageGray> |
convolve(Kernel2D kernel,
java.lang.Class<Input> inputType,
java.lang.Class<Output> outputType,
BorderType borderType)
Creates a filter for convolving 2D kernels along the image axis.
|
public static <Input extends ImageGray,Output extends ImageGray> ConvolveInterface<Input,Output> convolve(Kernel1D kernel, java.lang.Class<Input> inputType, java.lang.Class<Output> outputType, BorderType border, boolean isHorizontal)
kernel - Convolution kernel.inputType - Specifies input image type.outputType - Specifies input image type.border - How the image border is handled.public static <Input extends ImageGray,Output extends ImageGray> ConvolveInterface<Input,Output> convolve(Kernel2D kernel, java.lang.Class<Input> inputType, java.lang.Class<Output> outputType, BorderType borderType)
kernel - Convolution kernel.inputType - Specifies input image type.outputType - Specifies input image type.borderType - How the image border is handled.