http://www.emgu.com
Match the Image feature from the observed image to the features from the model image

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

Syntax

C#
public Features2DTracker..::..MatchedImageFeature[] MatchFeature(
	ImageFeature[] observedFeatures,
	int k
)
Visual Basic
Public Function MatchFeature ( _
	observedFeatures As ImageFeature(), _
	k As Integer _
) As Features2DTracker..::..MatchedImageFeature()
Visual C++
public:
array<Features2DTracker..::..MatchedImageFeature>^ MatchFeature(
	array<ImageFeature>^ observedFeatures, 
	int k
)

Parameters

observedFeatures
Type: array<Emgu.CV.Features2D..::..ImageFeature>[]()[][]
The Image feature from the observed image
k
Type: System..::..Int32
The number of neighbors to find

Return Value

The matched features

See Also