Recover the homography matrix using RANDSAC. If the matrix cannot be recovered, 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 static HomographyMatrix GetHomographyMatrixFromMatchedFeatures(
	Features2DTracker..::..MatchedImageFeature[] matchedFeatures
)
Public Shared Function GetHomographyMatrixFromMatchedFeatures ( _
	matchedFeatures As Features2DTracker..::..MatchedImageFeature() _
) As HomographyMatrix
public:
static HomographyMatrix^ GetHomographyMatrixFromMatchedFeatures(
	array<Features2DTracker..::..MatchedImageFeature>^ matchedFeatures
)

Parameters

matchedFeatures
array<Features2DTracker..::..MatchedImageFeature>[]()[][]
The Matched Features, only the first ModelFeature will be considered

Return Value

The homography matrix, if it cannot be found, null is returned

See Also