[This is preliminary documentation and is subject to change.]

Check if the homography matrix is valid.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public bool IsValid(
	double thresholdForDeterminant
)
Public Function IsValid ( _
	thresholdForDeterminant As Double _
) As Boolean
public:
bool IsValid(
	double thresholdForDeterminant
)

Parameters

thresholdForDeterminant
Double
A number > 1. A good number will be 10, if if the deteminate of the homography matrix is in the range of [1/threshold, threshold], true is returned

Return Value

True, if the deteminate of the homography matrix is in the range of [1/threshold, threshold]

See Also