http://www.emgu.com
Detect the keypoints in the image

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

Syntax

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

Parameters

image
Type: Emgu.CV..::..Image<(Of <(<'Gray, Byte>)>)>
The image from which the key point will be detected from

Return Value

The key pionts in the image

See Also