Calculates fundamental matrix given a set of corresponding points
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum CV_FM
<FlagsAttribute> _ Public Enumeration CV_FM
[FlagsAttribute] public enum class CV_FM
Members
Member | Description |
---|---|
CV_FM_7POINT |
for 7-point algorithm. N == 7
|
CV_FM_8POINT |
for 8-point algorithm. N >= 8
|
CV_FM_LMEDS_ONLY |
for LMedS algorithm. N >= 8
|
CV_FM_RANSAC_ONLY |
for RANSAC algorithm. N >= 8
|
CV_FM_LMEDS |
CV_FM_LMEDS_ONLY | CV_FM_8POINT
|
CV_FM_RANSAC |
CV_FM_RANSAC_ONLY | CV_FM_8POINT
|