Extract FAST keypoints

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void CvFASTKeyPoints(
	IntPtr image,
	IntPtr KeyPointSeq,
	int threshold,
	bool nonmaxSupression
)
Public Shared Sub CvFASTKeyPoints ( _
	image As IntPtr, _
	KeyPointSeq As IntPtr, _
	threshold As Integer, _
	nonmaxSupression As Boolean _
)
public:
static void CvFASTKeyPoints(
	IntPtr image, 
	IntPtr KeyPointSeq, 
	int threshold, 
	bool nonmaxSupression
)

Parameters

image
IntPtr
The image to extract keypoint from
KeyPointSeq
IntPtr
The pre-allocated sequence of MKeyPoints where the result will be stored
threshold
Int32

[Missing <param name="threshold"/> documentation for "M:Emgu.CV.CvInvoke.CvFASTKeyPoints(System.IntPtr,System.IntPtr,System.Int32,System.Boolean)"]

nonmaxSupression
Boolean
Indicates if nonmaximum supression should be used

See Also