http://www.emgu.com
Create a matched feature structure.

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

Syntax

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

Parameters

observedFeature
Type: Emgu.CV.Features2D..::..ImageFeature
The feature from the observed image
modelFeatures
Type: array<Emgu.CV.Features2D..::..ImageFeature>[]()[][]
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