Create a matched feature structure.

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

Syntax

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

Parameters

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

See Also