http://www.emgu.com
Convert the raw keypoints and descriptors to ImageFeature

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

Syntax

C#
public static ImageFeature[] ConvertToImageFeature(
	VectorOfKeyPoint keyPointsVec,
	Matrix<float> descriptors
)
Visual Basic
Public Shared Function ConvertToImageFeature ( _
	keyPointsVec As VectorOfKeyPoint, _
	descriptors As Matrix(Of Single) _
) As ImageFeature()
Visual C++
public:
static array<ImageFeature>^ ConvertToImageFeature(
	VectorOfKeyPoint^ keyPointsVec, 
	Matrix<float>^ descriptors
)

Parameters

keyPointsVec
Type: Emgu.CV.Util..::..VectorOfKeyPoint
The raw keypoints vector
descriptors
Type: Emgu.CV..::..Matrix<(Of <(<'Single>)>)>
The raw descriptor matrix

Return Value

An array of image features

See Also