public class FactoryConvolveDown extends Object
| Constructor and Description |
|---|
FactoryConvolveDown() |
| Modifier and Type | Method and Description |
|---|---|
static <Input extends ImageSingleBand,Output extends ImageSingleBand> |
convolve(Kernel1D kernel,
Class<Input> inputType,
Class<Output> outputType,
BorderType border,
boolean isHorizontal,
int skip)
Creates a filter for convolving 1D kernels along the image.
|
static <Input extends ImageSingleBand,Output extends ImageSingleBand> |
convolve(Kernel2D kernel,
Class<Input> inputType,
Class<Output> outputType,
BorderType border,
int skip)
Creates a filter for convolving 2D kernels along the image axis.
|
public static <Input extends ImageSingleBand,Output extends ImageSingleBand> GenericConvolveDown<Input,Output> convolve(Kernel1D kernel, Class<Input> inputType, Class<Output> outputType, BorderType border, boolean isHorizontal, int skip)
kernel - Convolution kernel.inputType - Specifies input image type.outputType - Specifies input image type.border - How the image border is handled.public static <Input extends ImageSingleBand,Output extends ImageSingleBand> GenericConvolveDown<Input,Output> convolve(Kernel2D kernel, Class<Input> inputType, Class<Output> outputType, BorderType border, int skip)
kernel - Convolution kernel.inputType - Specifies input image type.outputType - Specifies input image type.border - How the image border is handled.Copyright © 2013. All Rights Reserved.