FisheyeCalibrationFlag Enumeration |
http://www.emgu.com
Fisheye calibration flag.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic enum CalibrationFlag
Public Enumeration CalibrationFlag
public enum class CalibrationFlag
Members
| Member name | Value | Description |
---|
| Default | 0 |
Default flag
|
| UseIntrinsicGuess | 1 |
cameraMatrix contains valid initial values of fx, fy, cx, cy that are optimized further. Otherwise, (cx, cy) is initially set to the image center ( imageSize is used), and focal distances are computed in a least-squares fashion.
|
| RecomputeExtrinsic | 2 |
Extrinsic will be recomputed after each iteration of intrinsic optimization.
|
| CheckCond | 4 |
The functions will check validity of condition number.
|
| FixSkew | 8 |
Skew coefficient (alpha) is set to zero and stay zero.
|
| FixK1 | 16 |
Selected distortion coefficients are set to zeros and stay zero.
|
| FixK2 | 32 |
Selected distortion coefficients are set to zeros and stay zero.
|
| FixK3 | 64 |
Selected distortion coefficients are set to zeros and stay zero.
|
| FixK4 | 128 |
Selected distortion coefficients are set to zeros and stay zero.
|
| FixIntrinsic | 256 |
Fix intrinsic
|
See Also