Class GIntegralImageFeatureIntensity
java.lang.Object
boofcv.alg.feature.detect.intensity.GIntegralImageFeatureIntensity
Functions for computing feature intensity on an image. Image type agnostic.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends ImageGray<T>>
voidhessian
(T integral, int skip, int size, GrayF32 intensity, @Nullable IntegralKernel storageKerXX, @Nullable IntegralKernel storageKerYY, @Nullable IntegralKernel storageKerXY) Computes an approximation to the Hessian's determinant.
-
Constructor Details
-
GIntegralImageFeatureIntensity
public GIntegralImageFeatureIntensity()
-
-
Method Details
-
hessian
public static <T extends ImageGray<T>> void hessian(T integral, int skip, int size, GrayF32 intensity, @Nullable @Nullable IntegralKernel storageKerXX, @Nullable @Nullable IntegralKernel storageKerYY, @Nullable @Nullable IntegralKernel storageKerXY) Computes an approximation to the Hessian's determinant.- Parameters:
integral
- Integral image transform of input image. Not modified.skip
- How many pixels should it skip over.size
- Hessian kernel's size.intensity
- Output intensity image.
-