java.lang.Object
imagingbook.calibration.zhang.Calibrator.Parameters
- All Implemented Interfaces:
ParameterBundle<Calibrator>
- Enclosing class:
- Calibrator
Inner class representing a set of parameters for instantiating new objects of type of
Calibrator
.
Parameters can be specified by setting the associated public fields.-
Field Summary
FieldsModifier and TypeFieldDescriptionboolean
Assume that the camera has no skew (currently not used).boolean
Turn on debugging output.int
Number of lens distortion coefficients (2 = simple polynomial model).boolean
Normalize point coordinates for numerical stability inHomographyEstimator
.boolean
Use numeric (instead of analytic) calculation of the Jacobian inNonlinearOptimizer
. -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface imagingbook.common.util.ParameterBundle
getValidParameterFields, printToStream, printToString, validate
-
Field Details
-
normalizePointCoordinates
Normalize point coordinates for numerical stability inHomographyEstimator
. -
assumeZeroSkew
Assume that the camera has no skew (currently not used). -
useNumericJacobian
Use numeric (instead of analytic) calculation of the Jacobian inNonlinearOptimizer
. -
lensDistortionKoeffients
Number of lens distortion coefficients (2 = simple polynomial model). -
debug
Turn on debugging output.
-
-
Constructor Details
-
Parameters
public Parameters()
-