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.1.0.649 (2.1.0.649)

Syntax

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

Parameters

matchedFeatures
array< 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