| CalibrateDebevecCreate Method |
Creates the empty model.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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
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[Missing <returns> documentation for "M:OpenCvSharp.CalibrateDebevec.Create(System.Int32,System.Single,System.Boolean)"]
See Also