Detect the Lepetit keypoints from the image

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

Syntax

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

Parameters

image
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
The image to extract Lepetit keypoints
maxCount
Type: System..::.Int32
The maximum number of keypoints to be extracted
scaleCoords
Type: System..::.Boolean
Indicates if the coordinates should be scaled

Return Value

The array of Lepetit keypoints

See Also