Example #1
0
 /// <summary>
 /// Create a locally uniform comparison image descriptor.
 /// </summary>
 /// <param name="lucidKernel">Kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth</param>
 /// <param name="blurKernel">kernel for blurring image prior to descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth</param>
 public LUCID(int lucidKernel = 1, int blurKernel = 2)
 {
     _ptr = ContribInvoke.cveLUCIDCreate(lucidKernel, blurKernel, ref _feature2D);
 }