Get the FAST keypoints from this image

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public MKeyPoint[] GetFASTKeypoints(
	int threshold,
	bool nonmaxSupression
)
Visual Basic (Declaration)
Public Function GetFASTKeypoints ( _
	threshold As Integer, _
	nonmaxSupression As Boolean _
) As MKeyPoint()
Visual C++
public:
array<MKeyPoint>^ GetFASTKeypoints(
	int threshold, 
	bool nonmaxSupression
)

Parameters

threshold
Type: System..::.Int32
FAST threshold
nonmaxSupression
Type: System..::.Boolean
Specifiy if non-maximum supression should be used

Return Value

The FAST keypoints in this image

See Also