CalibrateRobertson Constructor |
http://www.emgu.com
Creates CalibrateRobertson object.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic CalibrateRobertson(
int maxIter = 30,
float threshold = 0.01f
)
Public Sub New (
Optional maxIter As Integer = 30,
Optional threshold As Single = 0.01F
)
public:
CalibrateRobertson(
int maxIter = 30,
float threshold = 0.01f
)
new :
?maxIter : int *
?threshold : float32
(* Defaults:
let _maxIter = defaultArg maxIter 30
let _threshold = defaultArg threshold 0.01f
*)
-> CalibrateRobertson
Parameters
- maxIter (Optional)
- Type: SystemInt32
maximal number of Gauss-Seidel solver iterations. - threshold (Optional)
- Type: SystemSingle
get difference between results of two successive steps of the minimization.
See Also