Get the FAST keypoints from this image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
[ObsoleteAttribute("Use Features2D.FastDetector instead, will be removed in the next version.")]
public MKeyPoint[] GetFASTKeypoints(
	int threshold,
	bool nonmaxSupression
)
<ObsoleteAttribute("Use Features2D.FastDetector instead, will be removed in the next version.")> _
Public Function GetFASTKeypoints ( _
	threshold As Integer, _
	nonmaxSupression As Boolean _
) As MKeyPoint()
[ObsoleteAttribute(L"Use Features2D.FastDetector instead, will be removed in the next version.")]
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