Create a matched feature structure.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

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