http://www.emgu.com
Detect the if the model features exist in the observed features. If true, an homography matrix is returned, otherwise, null is returned.

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

Syntax

C#
public HomographyMatrix Detect(
	ImageFeature[] observedFeatures,
	double uniquenessThreshold
)
Visual Basic
Public Function Detect ( _
	observedFeatures As ImageFeature(), _
	uniquenessThreshold As Double _
) As HomographyMatrix
Visual C++
public:
HomographyMatrix^ Detect(
	array<ImageFeature>^ observedFeatures, 
	double uniquenessThreshold
)

Parameters

observedFeatures
Type: array<Emgu.CV.Features2D..::..ImageFeature>[]()[][]
The observed features
uniquenessThreshold
Type: System..::..Double
The distance different ratio which a match is consider unique, a good number will be 0.8

Return Value

If the model features exist in the observed features, an homography matrix is returned, otherwise, null is returned.

See Also