http://www.emgu.com
Calculates fundamental matrix given a set of corresponding points
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum FmType
<FlagsAttribute>
Public Enumeration FmType
[FlagsAttribute]
public enum class FmType
[<FlagsAttribute>]
type FmType
Members
| Member name | Value | Description |
---|
| SevenPoint | 1 |
for 7-point algorithm. N == 7
|
| EightPoint | 2 |
for 8-point algorithm. N >= 8
|
| LMedsOnly | 4 |
for LMedS algorithm. N >= 8
|
| RansacOnly | 8 |
for RANSAC algorithm. N >= 8
|
| LMeds | 6 |
CV_FM_LMEDS_ONLY | CV_FM_8POINT
|
| Ransac | 10 |
CV_FM_RANSAC_ONLY | CV_FM_8POINT
|
See Also