Skip to content

xfeatures2d_LUCID_create

xfeatures2dfunctionOpenCV 5.0.0
import { xfeatures2d_LUCID_create } from '@banou/opencv-wasm'

Use after await initOpenCV(). See the initialization and named imports guide.

ARGUMENTSlucid_kernel, blur_kernel
FUNCTIONxfeatures2d_LUCID_create
RETURN TYPExfeatures2d_LUCID | null
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

Create an owned xfeatures2d_LUCID instance with the supplied configuration.

Class implementing the locally uniform comparison image descriptor, described in [LUCID]

xfeatures2d_LUCID_create(lucid_kernel: number, blur_kernel: number): xfeatures2d_LUCID | null;
3 available overloads
xfeatures2d_LUCID_create(): xfeatures2d_LUCID | null;
xfeatures2d_LUCID_create(lucid_kernel: number): xfeatures2d_LUCID | null;
xfeatures2d_LUCID_create(lucid_kernel: number, blur_kernel: number): xfeatures2d_LUCID | null;
lucid_kernel

kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth

blur_kernel

kernel for blurring image prior to descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth

Returns

The xfeatures2d_LUCID | null result.

These signatures describe this package. Upstream documentation can mention optional backends that are absent from this build. Check runtime compatibility before choosing a backend or file format.