Detect STAR key points from the image

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

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:
array<MKeyPoint>^ DetectKeyPoints(
	Image<Gray, unsigned char>^ image
)

Parameters

image
Image<(Of <(Gray, Byte>)>)
The image to extract key points from

Return Value

The STAR key points of the image

See Also