http://www.emgu.com
Check if the homography matrix is valid.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public bool IsValid(
double thresholdForDeterminant
) |
Visual Basic |
---|
Public Function IsValid ( _
thresholdForDeterminant As Double _
) As Boolean |
Visual C++ |
---|
public:
bool IsValid(
double thresholdForDeterminant
) |
Parameters
- thresholdForDeterminant
- Type: System..::..Double
A number > 1. A good number will be 10. 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