Computes the second derivative (Hessian) of an image using. This hessian is derived using the GradientSobel
gradient 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.
public static<I extends ImageGray<I>,
D extends ImageGray<D>>voidprocess(I input,
D derivXX,
D derivYY,
D derivXY,
@Nullable
@Nullable ImageBorder border)