Package boofcv.abst.filter.derivative
Interface ImageHessian<Output extends ImageGray<Output>>
- All Superinterfaces:
ImageDerivative<Output,
Output>
- All Known Implementing Classes:
ImageHessian_Reflection
public interface ImageHessian<Output extends ImageGray<Output>>
extends ImageDerivative<Output,Output>
A generic interface for computing image's second derivatives given the image's gradient. This is typically faster
than computing the Hessian directly.
-
Method Summary
Methods inherited from interface boofcv.abst.filter.derivative.ImageDerivative
getBorder, getBorderType, getDerivativeType, setBorderType
-
Method Details
-
process
void process(Output inputDerivX, Output inputDerivY, Output derivXX, Output derivYY, Output derivXY) Computes all the second derivative terms in the image.- Parameters:
inputDerivX
- Precomputed image X-derivative.inputDerivY
- Precomputed image Y-derivative.derivXX
- Second derivative x-axis x-axisderivYY
- Second derivative y-axis y-axisderivXY
- Second derivative x-axis y-axis
-