Skip to content

xfeatures2d_KAZE_create

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

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

ARGUMENTSextended, upright, threshold, nOctaves
FUNCTIONxfeatures2d_KAZE_create
RETURN TYPExfeatures2d_KAZE | null
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

The KAZE constructor

xfeatures2d_KAZE_create(extended: boolean, upright: boolean, threshold: number, nOctaves: number, nOctaveLayers: number, diffusivity: number): xfeatures2d_KAZE | null;
7 available overloads
xfeatures2d_KAZE_create(): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean, upright: boolean): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean, upright: boolean, threshold: number): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean, upright: boolean, threshold: number, nOctaves: number): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean, upright: boolean, threshold: number, nOctaves: number, nOctaveLayers: number): xfeatures2d_KAZE | null;
xfeatures2d_KAZE_create(extended: boolean, upright: boolean, threshold: number, nOctaves: number, nOctaveLayers: number, diffusivity: number): xfeatures2d_KAZE | null;
extended

Set to enable extraction of extended (128-byte) descriptor.

upright

Set to enable use of upright descriptors (non rotation-invariant).

threshold

Detector response threshold to accept point

nOctaves

Maximum octave evolution of the image

nOctaveLayers

Default number of sublevels per scale level

diffusivity

Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or DIFF_CHARBONNIER

Returns

The xfeatures2d_KAZE | 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.