Click or drag to resize
FastDetector 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: 3.1.0.2282 (3.1.0.2282)
Syntax
public FastDetector(
	int threshold = 10,
	bool nonmaxSupression = true,
	FastDetectorDetectorType type = FastDetectorDetectorType.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.Features2DFastDetectorDetectorType
One of the three neighborhoods as defined in the paper
See Also