Package boofcv.struct.convolve
Class KernelContinuous1D_F32
java.lang.Object
boofcv.struct.convolve.KernelBase
boofcv.struct.convolve.Kernel1D
boofcv.struct.convolve.KernelContinuous1D_F32
- Direct Known Subclasses:
BicubicKernel_F32
Computes the instantaneous value of a continuous valued function.
The kernel is assumed to be zero outside of its radius.
-
Field Summary
Fields inherited from class boofcv.struct.convolve.KernelBase
offset, width
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract float
compute
(float x) Computes the value of the kernel at hte specified point.Methods inherited from class boofcv.struct.convolve.Kernel1D
getDimension, getDouble, setD
Methods inherited from class boofcv.struct.convolve.KernelBase
copy, getRadius, isInteger
-
Constructor Details
-
KernelContinuous1D_F32
protected KernelContinuous1D_F32(int width)
-
-
Method Details
-
compute
public abstract float compute(float x) Computes the value of the kernel at hte specified point.- Parameters:
x
- Function's input.- Returns:
- Function's value at point 'x'
-