Click or drag to resize

CudaFastFeatureDetector Constructor

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

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public CudaFastFeatureDetector(
	int threshold = 10,
	bool nonmaxSupression = true,
	FastFeatureDetectorDetectorType type = FastFeatureDetectorDetectorType.Type9_16,
	int maxNKeypoints = 5000
)

Parameters

threshold (Optional)
Type: SystemInt32
Threshold on difference between intensity of center pixel and pixels on circle around this pixel. Use 10 for default.
nonmaxSupression (Optional)
Type: SystemBoolean
Specifiy if non-maximum supression should be used.
type (Optional)
Type: Emgu.CV.Features2DFastFeatureDetectorDetectorType
The detector type
maxNKeypoints (Optional)
Type: SystemInt32
The maximum number of keypoints to be extracted.
See Also