Package boofcv.abst.filter.derivative
Interface ImageHessianDirect<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
- All Superinterfaces:
ImageDerivative<Input,Output>
- All Known Implementing Classes:
ImageHessianDirect_SB,ImageHessianDirect_SB.Sobel,ImageHessianDirect_SB.Three
public interface ImageHessianDirect<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
extends ImageDerivative<Input,Output>
A generic interface for computing image's second derivatives directly from the source image. This is typically
slower than computing it from the image's gradient
ImageHessian, even when the time to compute the image's
gradient is taken in account.-
Method Summary
Methods inherited from interface boofcv.abst.filter.derivative.ImageDerivative
getBorder, getBorderType, getDerivativeType, setBorderType
-
Method Details
-
process
Computes all the second derivative terms in the image.- Parameters:
inputImage- Original image.derivXX- Second derivative x-axis x-axisderivYY- Second derivative x-axis y-axisderivXY- Second derivative x-axis y-axis
-