Package boofcv.abst.filter.convolve
Interface ConvolveDown<Input extends ImageBase<Input>,Output extends ImageBase<Output>>
- All Superinterfaces:
ConvolveInterface<Input,
,Output> FilterImageInterface<Input,
Output>
- All Known Implementing Classes:
GenericConvolveDown
,PlanarConvolveDown
public interface ConvolveDown<Input extends ImageBase<Input>,Output extends ImageBase<Output>>
extends ConvolveInterface<Input,Output>
Generalized interface for filtering images with convolution kernels while skipping pixels.
Can invoke different techniques for handling image borders. The first pixel sampled is always (0,0) and the
sampled pixels are (x*skip,y*skip).
-
Method Summary
Methods inherited from interface boofcv.abst.filter.convolve.ConvolveInterface
getBorderType
Methods inherited from interface boofcv.abst.filter.FilterImageInterface
getBorderX, getBorderY, getInputType, getOutputType, process
-
Method Details
-
getSkip
int getSkip() -
setSkip
void setSkip(int skip)
-