Calculates fundamental matrix given a set of corresponding points

C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum CV_FM
<FlagsAttribute> _ Public Enumeration CV_FM
[FlagsAttribute] public enum class CV_FM

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
|