Get the FAST keypoints from this image

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

Syntax

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

Parameters

threshold
Int32
FAST threshold
nonmaxSupression
Boolean
Specifiy if non-maximum supression should be used

Return Value

The FAST keypoints in this image

See Also