Click or drag to resize

HarrisLaplaceFeatureDetector Constructor

http://www.emgu.com
Create a HarrisLaplaceFeatureDetector

Namespace:  Emgu.CV.XFeatures2D
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public HarrisLaplaceFeatureDetector(
	int numOctaves,
	float cornThresh,
	float DOGThresh,
	int maxCorners,
	int numLayers
)

Parameters

numOctaves
Type: SystemInt32
the number of octaves in the scale-space pyramid
cornThresh
Type: SystemSingle
the threshold for the Harris cornerness measure
DOGThresh
Type: SystemSingle
the threshold for the Difference-of-Gaussians scale selection
maxCorners
Type: SystemInt32
the maximum number of corners to consider
numLayers
Type: SystemInt32
the number of intermediate scales per octave
See Also