{ } Raw JSON

bundles / skimage 0.26.1rc0.dev0+git20260530.b607368ff / skimage / feature / corner / hessian_matrix_det

function

skimage.feature.corner:hessian_matrix_det

source: /dev/scikit-image/src/skimage/feature/corner.py :340

Signature

def   hessian_matrix_det ( image sigma = 1 approximate = True )

Summary

Compute the approximate Hessian Determinant over an image.

Extended Summary

The 2D approximate method uses box filters over integral images to compute the approximate Hessian Determinant.

Parameters

image : ndarray

The image over which to compute the Hessian Determinant.

sigma : float, optional

Standard deviation of the Gaussian kernel used for the Hessian matrix.

approximate : bool, optional

If True and the image is 2D, use a much faster approximate computation. This argument has no effect on 3D and higher images.

Returns

out : array

The array of the Determinant of Hessians.

Notes

For 2D images when approximate=True, the running time of this method only depends on size of the image. It is independent of sigma as one would expect. The downside is that the result for sigma less than 3 is not accurate, i.e., not similar to the result obtained if someone computed the Hessian and took its determinant.

Aliases

  • skimage.feature.hessian_matrix_det