Click or drag to resize

CalibType Class

http://www.emgu.com
Various camera calibration flags
Inheritance Hierarchy

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntax
[FlagsAttribute]
public sealed class CalibType : Enum

The CalibType type exposes the following members.

Methods
  NameDescription
Public methodCompareTo
Compares this instance to a specified object and returns an indication of their relative values.
(Inherited from Enum.)
Public methodEquals
Returns a value indicating whether this instance is equal to a specified object.
(Inherited from Enum.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Returns the hash code for the value of this instance.
(Inherited from Enum.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetTypeCode
Returns the type code of the underlying type of this enumeration member.
(Inherited from Enum.)
Public methodHasFlag
Determines whether one or more bit fields are set in the current instance.
(Inherited from Enum.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Converts the value of this instance to its equivalent string representation.
(Inherited from Enum.)
Public methodToString(IFormatProvider) Obsolete. (Inherited from Enum.)
Public methodToString(String)
Converts the value of this instance to its equivalent string representation using the specified format.
(Inherited from Enum.)
Public methodToString(String, IFormatProvider) Obsolete.
This method overload is obsolete; use ToString(String).
(Inherited from Enum.)
Top
Fields
  NameDescription
Public fieldStatic memberDefault
The default value
Public fieldStatic memberFixAspectRatio
The optimization procedure consider only one of fx and fy as independent variable and keeps the aspect ratio fx/fy the same as it was set initially in intrinsic_matrix. In this case the actual initial values of (fx, fy) are either taken from the matrix (when CV_CALIB_USE_INTRINSIC_GUESS is set) or estimated somehow (in the latter case fx, fy may be set to arbitrary values, only their ratio is used)
Public fieldStatic memberFixFocalLength
The focal length is fixed
Public fieldStatic memberFixIntrinsic
Only for stereo: Fix intrinsic
Public fieldStatic memberFixK1
The 1st distortion coefficient (k1) is fixed to 0 or to the initial passed value if CV_CALIB_USE_INTRINSIC_GUESS is passed
Public fieldStatic memberFixK2
The 2nd distortion coefficient (k2) is fixed to 0 or to the initial passed value if CV_CALIB_USE_INTRINSIC_GUESS is passed
Public fieldStatic memberFixK3
The 3rd distortion coefficient (k3) is fixed to 0 or to the initial passed value if CV_CALIB_USE_INTRINSIC_GUESS is passed
Public fieldStatic memberFixK4
The 4th distortion coefficient (k4) is fixed (see above)
Public fieldStatic memberFixK5
The 5th distortion coefficient (k5) is fixed to 0 or to the initial passed value if CV_CALIB_USE_INTRINSIC_GUESS is passed
Public fieldStatic memberFixK6
The 6th distortion coefficient (k6) is fixed to 0 or to the initial passed value if CV_CALIB_USE_INTRINSIC_GUESS is passed
Public fieldStatic memberFixPrincipalPoint
The principal point is not changed during the global optimization, it stays at the center and at the other location specified (when CV_CALIB_FIX_FOCAL_LENGTH - Both fx and fy are fixed. CV_CALIB_USE_INTRINSIC_GUESS is set as well)
Public fieldStatic memberFixS1S2S3S4
Fix S1, S2, S3, S4
Public fieldStatic memberFixTauxTauy
Fix Taux Tauy
Public fieldStatic memberRationalModel
Rational model
Public fieldStatic memberSameFocalLength
Only for stereo: Same focal length
Public fieldStatic memberThinPrismModel
Thin prism model
Public fieldStatic memberTiltedModel
Tilted model
Public fieldStatic memberUseIntrinsicGuess
intrinsic_matrix contains valid initial values of fx, fy, cx, cy that are optimized further. Otherwise, (cx, cy) is initially set to the image center (image_size is used here), and focal distances are computed in some least-squares fashion
Public fieldStatic memberUseLU
For stereo rectification: use LU instead of SVD decomposition for solving. much faster but potentially less precise
Public fieldStatic memberUseQR
Use QR instead of SVD decomposition for solving. Faster but potentially less precise
Public fieldvalue__
Public fieldStatic memberZeroDisparity
For stereo rectification: Zero disparity
Public fieldStatic memberZeroTangentDist
Tangential distortion coefficients are set to zeros and do not change during the optimization
Top
See Also