Create a matched feature structure.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public MatchedSURFFeature(
	SURFFeature observedFeature,
	SURFFeature[] modelFeatures,
	double[] dist
)
Public Sub New ( _
	observedFeature As SURFFeature, _
	modelFeatures As SURFFeature(), _
	dist As Double() _
)
public:
MatchedSURFFeature(
	SURFFeature^ observedFeature, 
	array<SURFFeature^>^ modelFeatures, 
	array<double>^ dist
)

Parameters

observedFeature
SURFFeature
The feature from the observed image
modelFeatures
array<SURFFeature>[]()[][]
The matched feature from the model
dist
array<Double>[]()[][]
The distances between the feature from the observerd image and the matched feature from the model image

See Also