HomographyMethods Enumeration
|
The method used to computed homography matrix
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax[FlagsAttribute]
public enum HomographyMethods
<FlagsAttribute>
Public Enumeration HomographyMethods
[FlagsAttribute]
public enum class HomographyMethods
[<FlagsAttribute>]
type HomographyMethods
OpenCvSharp.HomographyMethods = function();
OpenCvSharp.HomographyMethods.createEnum('OpenCvSharp.HomographyMethods', true);
Members
| Member name | Value | Description |
---|
| None | 0 |
Regular method using all the point pairs
|
| LMedS | 4 |
Least-Median robust method
|
| Ransac | 8 |
RANSAC-based robust method
|
| Rho | 16 |
RHO algorithm
|
See Also