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 MatchedImageFeature(
	ImageFeature observedFeature,
	ImageFeature[] modelFeatures,
	double[] dist
)
Public Sub New ( _
	observedFeature As ImageFeature, _
	modelFeatures As ImageFeature(), _
	dist As Double() _
)
public:
MatchedImageFeature(
	ImageFeature observedFeature, 
	array<ImageFeature>^ modelFeatures, 
	array<double>^ dist
)

Parameters

observedFeature
ImageFeature
The feature from the observed image
modelFeatures
array<ImageFeature>[]()[][]
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