Uses of Interface
boofcv.abst.filter.convolve.ConvolveInterface
Package
Description
-
Uses of ConvolveInterface in boofcv.abst.filter.convolve
Modifier and TypeInterfaceDescriptioninterface
ConvolveDown<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels while skipping pixels.Modifier and TypeClassDescriptionclass
GenericConvolve<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels.class
GenericConvolveDown<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels while skipping pixels.class
PlanarConvolveDown<In extends ImageGray<In>,
Out extends ImageGray<Out>> Implementation ofConvolveDown
forPlanar
images. -
Uses of ConvolveInterface in boofcv.abst.filter.derivative
ModifierConstructorDescriptionAnyImageDerivative
(ConvolveInterface<I, D> derivX, ConvolveInterface<I, D> derivY, ConvolveInterface<D, D> derivXX, ConvolveInterface<D, D> derivYY, Class<I> inputType, Class<D> derivType) Constructor for when all derivative filters are specified -
Uses of ConvolveInterface in boofcv.factory.filter.convolve
Modifier and TypeMethodDescriptionstatic <Input extends ImageBase<Input>,
Output extends ImageBase<Output>>
ConvolveInterface<Input,Output> FactoryConvolve.convolve
(Kernel1D kernel, ImageType<Input> inputType, ImageType<Output> outputType, BorderType border, boolean isHorizontal) Creates a filter for convolving 1D kernels along the image.static <Input extends ImageGray<Input>,
Output extends ImageGray<Output>>
ConvolveInterface<Input,Output> FactoryConvolve.convolve
(Kernel2D kernel, Class<Input> inputType, Class<Output> outputType, BorderType borderType) Creates a filter for convolving 2D kernels along the image axis.