CalibrateDebevec Constructor |
http://www.emgu.com
Creates CalibrateDebevec object.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic CalibrateDebevec(
int samples = 70,
float lambda = 10f,
bool random = false
)
Public Sub New (
Optional samples As Integer = 70,
Optional lambda As Single = 10F,
Optional random As Boolean = false
)
public:
CalibrateDebevec(
int samples = 70,
float lambda = 10f,
bool random = false
)
new :
?samples : int *
?lambda : float32 *
?random : bool
(* Defaults:
let _samples = defaultArg samples 70
let _lambda = defaultArg lambda 10f
let _random = defaultArg random false
*)
-> CalibrateDebevec
Parameters
- samples (Optional)
- Type: SystemInt32
Number of pixel locations to use - lambda (Optional)
- Type: SystemSingle
Smoothness term weight. Greater values produce smoother results, but can alter the response. - random (Optional)
- Type: SystemBoolean
If true sample pixel locations are chosen at random, otherwise the form a rectangular grid.
See Also