Click or drag to resize

FastFeatureDetector Constructor

http://www.emgu.com
Create a fast detector with the specific parameters

Namespace:  Emgu.CV.Features2D
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public FastFeatureDetector(
	int threshold = 10,
	bool nonmaxSupression = true,
	FastFeatureDetectorDetectorType type = FastFeatureDetectorDetectorType.Type9_16
)

Parameters

threshold (Optional)
Type: SystemInt32
Threshold on difference between intensity of center pixel and pixels on circle around this pixel.
nonmaxSupression (Optional)
Type: SystemBoolean
Specify if non-maximum suppression should be used.
type (Optional)
Type: Emgu.CV.Features2DFastFeatureDetectorDetectorType
One of the three neighborhoods as defined in the paper
See Also