Enum FishEyeCalibrationFlags
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Different flags for the fisheye camera calibration functions (cv::fisheye::calibrate, cv::fisheye::stereoCalibrate).
[Flags]
public enum FishEyeCalibrationFlags
Fields
CheckCond = 16777216For fisheye model only. Check SVD decomposition quality for each frame during extrinsics estimation.
FixIntrinsic = 256For stereo and multi-camera calibration only. Do not optimize cameras intrinsics.
FixK1 = 32The distortion coefficient k1 is not changed during the optimization. 0 value is used, if UseIntrinsicGuess is not set.
FixK2 = 64The distortion coefficient k2 is not changed during the optimization. 0 value is used, if UseIntrinsicGuess is not set.
FixK3 = 128The distortion coefficient k3 is not changed during the optimization. 0 value is used, if UseIntrinsicGuess is not set.
FixK4 = 2048The distortion coefficient k4 is not changed during the optimization. 0 value is used, if UseIntrinsicGuess is not set.
FixPrincipalPoint = 4The principal point (cx, cy) stays the same as in the input camera matrix. Image center is used as principal point, if UseIntrinsicGuess is not set.
FixSkew = 33554432For fisheye model only. Skew coefficient (alpha) is set to zero and stay zero.
None = 0RecomputeExtrinsic = 8388608For fisheye model only. Recompute board position on each calibration iteration.
UseIntrinsicGuess = 1Use user provided intrinsics as initial point for optimization.