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.2.0.1010 (2.2.0.1010)

Syntax

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

Parameters

observedFeatures
array<ImageFeature>[]()[][]
The Image feature from the observed image
k
Int32
The number of neighbors to find
emax
Int32
For k-d tree only: the maximum number of leaves to visit.

Return Value

The matched features

See Also