Recover the homography matrix using RANDSAC. If the matrix cannot be recovered, null is returned.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static HomographyMatrix GetHomographyMatrixFromMatchedFeatures(
	SURFTracker..::.MatchedSURFFeature[] matchedFeatures
)
Visual Basic (Declaration)
Public Shared Function GetHomographyMatrixFromMatchedFeatures ( _
	matchedFeatures As SURFTracker..::.MatchedSURFFeature() _
) As HomographyMatrix
Visual C++
public:
static HomographyMatrix^ GetHomographyMatrixFromMatchedFeatures(
	array<SURFTracker..::.MatchedSURFFeature>^ matchedFeatures
)

Parameters

matchedFeatures
Type: array< Emgu.CV..::.SURFTracker..::.MatchedSURFFeature >[]()[]
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