| LUCIDCreate Method |
Constructor
Namespace:
OpenCvSharp.XFeatures2D
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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
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[Missing <returns> documentation for "M:OpenCvSharp.XFeatures2D.LUCID.Create(System.Int32,System.Int32)"]
See Also