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.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

observedFeatures
array<ImageFeature>[]()[][]
The observed features
uniquenessThreshold
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