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#
VectorOfKeyPoint DetectKeyPointsRaw(
	Image<Gray, byte> image,
	Image<Gray, byte> mask
)
Visual Basic
Function DetectKeyPointsRaw ( _
	image As Image(Of Gray, Byte), _
	mask As Image(Of Gray, Byte) _
) As VectorOfKeyPoint
Visual C++
VectorOfKeyPoint^ DetectKeyPointsRaw(
	Image<Gray, unsigned char>^ image, 
	Image<Gray, unsigned char>^ mask
)

Parameters

image
Type: Emgu.CV..::..Image<(Of <(<'Gray, Byte>)>)>
The image from which the key point will be detected from
mask
Type: Emgu.CV..::..Image<(Of <(<'Gray, Byte>)>)>
The optional mask, can be null if not needed

Return Value

The key pionts in the image

See Also