Constructor
Namespace:
OpenCvSharp.XFeatures2D
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static LUCID Create(
int lucidKernel = 1,
int blurKernel = 2
)
Public Shared Function Create (
Optional lucidKernel As Integer = 1,
Optional blurKernel As Integer = 2
) As LUCID
public:
static LUCID^ Create(
int lucidKernel = 1,
int blurKernel = 2
)
static member Create :
?lucidKernel : int *
?blurKernel : int
(* Defaults:
let _lucidKernel = defaultArg lucidKernel 1
let _blurKernel = defaultArg blurKernel 2
*)
-> LUCID
OpenCvSharp.XFeatures2D.LUCID.Create = function(lucidKernel, blurKernel);
Parameters
- lucidKernel (Optional)
- Type: SystemInt32
kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth - blurKernel (Optional)
- Type: SystemInt32
kernel for blurring image prior to descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth
Return Value
Type:
LUCID
See Also