Detect the Fast keypoints from the image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public MKeyPoint[] DetectKeyPoints(
	Image<Gray, byte> image
)
Public Function DetectKeyPoints ( _
	image As Image(Of Gray, Byte) _
) As MKeyPoint()
public:
virtual array<MKeyPoint>^ DetectKeyPoints(
	Image<Gray, unsigned char>^ image
) sealed

Parameters

image
Image<(Of <(<'Gray, Byte>)>)>
The image to extract keypoints from

Return Value

The array of fast keypoints

Implements

IKeyPointDetector..::..DetectKeyPoints(Image<(Of <<'(Gray, Byte>)>>))

See Also