Match the SURF feature from the observed image to the features from the model 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 SURFTracker..::.MatchedSURFFeature[] MatchFeature(
	SURFFeature[] observedFeatures,
	int k,
	int emax
)
Public Function MatchFeature ( _
	observedFeatures As SURFFeature(), _
	k As Integer, _
	emax As Integer _
) As SURFTracker..::.MatchedSURFFeature()
public:
array<SURFTracker..::.MatchedSURFFeature>^ MatchFeature(
	array<SURFFeature^>^ observedFeatures, 
	int k, 
	int emax
)

Parameters

observedFeatures
array< SURFFeature >[]()[]
The SURF 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