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.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaFastFeatureDetector(
	int threshold = 10,
	bool nonmaxSupression = true,
	FastDetectorDetectorType type = FastDetectorDetectorType.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.Features2DFastDetectorDetectorType

[Missing <param name="type"/> documentation for "M:Emgu.CV.Cuda.CudaFastFeatureDetector.#ctor(System.Int32,System.Boolean,Emgu.CV.Features2D.FastDetector.DetectorType,System.Int32)"]

maxNKeypoints (Optional)
Type: SystemInt32

[Missing <param name="maxNKeypoints"/> documentation for "M:Emgu.CV.Cuda.CudaFastFeatureDetector.#ctor(System.Int32,System.Boolean,Emgu.CV.Features2D.FastDetector.DetectorType,System.Int32)"]

See Also