CalibrateDebevecCreate Method
|
Creates the empty model.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static CalibrateDebevec Create(
int samples = 70,
float lambda = 10f,
bool random = false
)
Public Shared Function Create (
Optional samples As Integer = 70,
Optional lambda As Single = 10F,
Optional random As Boolean = false
) As CalibrateDebevec
public:
static CalibrateDebevec^ Create(
int samples = 70,
float lambda = 10f,
bool random = false
)
static member Create :
?samples : int *
?lambda : float32 *
?random : bool
(* Defaults:
let _samples = defaultArg samples 70
let _lambda = defaultArg lambda 10f
let _random = defaultArg random false
*)
-> CalibrateDebevec
OpenCvSharp.CalibrateDebevec.Create = function(samples, lambda, random);
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.
Return Value
Type:
CalibrateDebevec
See Also