boofcv.alg.filter.derivative
Class HessianSobel
- java.lang.Object
-
- boofcv.alg.filter.derivative.HessianSobel
-
public class HessianSobel extends java.lang.ObjectComputes the second derivative (Hessian) of an image using. This hessian is derived using the
GradientSobelgradient function.WARNING: It is computationally more expensive to compute the Hessian with this operation than applying the Sobel gradient operator multiple times. However, this does not require the creation additional storage to save intermediate results.
Kernel for ∂ 2f/∂ y2:
2f/∂ x∂y is:1 4 6 4 1 0 0 0 0 0 -2 -8 -12 -8 -2 0 0 0 0 0 1 4 6 4 1
1 2 0 -2 -1 2 4 0 -4 -2 0 0 0 0 0 -2 -4 0 4 2 -1 -2 0 2 1
-
-
Field Summary
Fields Modifier and Type Field and Description static Kernel2D_F32kernelXX_F32static Kernel2D_I32kernelXX_I32static Kernel2D_F32kernelXY_F32static Kernel2D_I32kernelXY_I32static Kernel2D_F32kernelYY_F32static Kernel2D_I32kernelYY_I32
-
Constructor Summary
Constructors Constructor and Description HessianSobel()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidprocess(GrayF32 orig, GrayF32 derivXX, GrayF32 derivYY, GrayF32 derivXY, ImageBorder_F32 border)Computes the image's second derivatives.static voidprocess(GrayU8 orig, GrayS16 derivXX, GrayS16 derivYY, GrayS16 derivXY, ImageBorder_S32 border)Computes the image's second derivatives.
-
-
-
Field Detail
-
kernelYY_I32
public static Kernel2D_I32 kernelYY_I32
-
kernelXX_I32
public static Kernel2D_I32 kernelXX_I32
-
kernelXY_I32
public static Kernel2D_I32 kernelXY_I32
-
kernelYY_F32
public static Kernel2D_F32 kernelYY_F32
-
kernelXX_F32
public static Kernel2D_F32 kernelXX_F32
-
kernelXY_F32
public static Kernel2D_F32 kernelXY_F32
-
-
Method Detail
-
process
public static void process(GrayU8 orig, GrayS16 derivXX, GrayS16 derivYY, GrayS16 derivXY, ImageBorder_S32 border)
Computes the image's second derivatives.- Parameters:
orig- Which which is to be differentiated. Not Modified.derivXX- Second derivative along the x-axis. Modified.derivYY- Second derivative along the y-axis. Modified.derivXY- Second cross derivative. Modified.border- Specifies how the image border is handled. If null the border is not processed.
-
process
public static void process(GrayF32 orig, GrayF32 derivXX, GrayF32 derivYY, GrayF32 derivXY, ImageBorder_F32 border)
Computes the image's second derivatives.- Parameters:
orig- Which which is to be differentiated. Not Modified.derivXX- Second derivative along the x-axis. Modified.derivYY- Second derivative along the y-axis. Modified.derivXY- Second cross derivative. Modified.border- Specifies how the image border is handled. If null the border is not processed.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG