Skip to content

xfeatures2d_DAISY

xfeatures2dclassOpenCV 5.0.0
import { xfeatures2d_DAISY } from '@banou/opencv-wasm'

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

ARGUMENTSConstructor or factory
CLASSxfeatures2d_DAISY
RETURN TYPEOwned native handle
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

Native object: release it with using or delete(). Factories can return null; check before calling methods. Inherits xfeatures2d_Feature2D.

Class implementing DAISY descriptor, described in [Tola10]

Constructors and members

static create

Create an owned xfeatures2d_DAISY instance with the supplied configuration.

Class implementing DAISY descriptor, described in [Tola10]

create(radius: number, q_radius: number, q_theta: number, q_hist: number, norm: number, H: Mat, interpolation: boolean, use_orientation: boolean): xfeatures2d_DAISY | null;
9 available overloads
create(): xfeatures2d_DAISY | null;
create(radius: number): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number, q_hist: number): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number, q_hist: number, norm: number): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number, q_hist: number, norm: number, H: Mat): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number, q_hist: number, norm: number, H: Mat, interpolation: boolean): xfeatures2d_DAISY | null;
create(radius: number, q_radius: number, q_theta: number, q_hist: number, norm: number, H: Mat, interpolation: boolean, use_orientation: boolean): xfeatures2d_DAISY | null;
radius

radius argument (number).

q_radius

q radius argument (number).

q_theta

q theta argument (number).

q_hist

q hist argument (number).

norm

norm argument (number).

H

h argument (Mat).

interpolation

interpolation argument (boolean).

use_orientation

use orientation argument (boolean).

Returns

The xfeatures2d_DAISY | null result.

clone

Create another handle to the same native object. This retains the object without copying its pixels or algorithm state; dispose both handles separately.

clone(): this;
Returns

The this result.

setRadius

Set the radius used by this xfeatures2d_DAISY object.

setRadius(radius: number): void;
radius

radius argument (number).

getRadius

Return the radius configured on this xfeatures2d_DAISY object.

getRadius(): number;
Returns

The number result.

setQRadius

Set the qradius used by this xfeatures2d_DAISY object.

setQRadius(q_radius: number): void;
q_radius

q radius argument (number).

getQRadius

Return the qradius configured on this xfeatures2d_DAISY object.

getQRadius(): number;
Returns

The number result.

setQTheta

Set the qtheta used by this xfeatures2d_DAISY object.

setQTheta(q_theta: number): void;
q_theta

q theta argument (number).

getQTheta

Return the qtheta configured on this xfeatures2d_DAISY object.

getQTheta(): number;
Returns

The number result.

setQHist

Set the qhist used by this xfeatures2d_DAISY object.

setQHist(q_hist: number): void;
q_hist

q hist argument (number).

getQHist

Return the qhist configured on this xfeatures2d_DAISY object.

getQHist(): number;
Returns

The number result.

setNorm

Set the norm used by this xfeatures2d_DAISY object.

setNorm(norm: number): void;
norm

norm argument (number).

getNorm

Return the norm configured on this xfeatures2d_DAISY object.

getNorm(): number;
Returns

The number result.

setH

Set the h used by this xfeatures2d_DAISY object.

setH(H: Mat): void;
H

h argument (Mat).

getH

Return the h configured on this xfeatures2d_DAISY object.

getH(): Mat;
Returns

The Mat result. Release returned native handles with using or delete(), including handles nested in results.

setInterpolation

Set the interpolation used by this xfeatures2d_DAISY object.

setInterpolation(interpolation: boolean): void;
interpolation

interpolation argument (boolean).

getInterpolation

Return the interpolation configured on this xfeatures2d_DAISY object.

getInterpolation(): boolean;
Returns

The boolean result.

setUseOrientation

Set the use orientation used by this xfeatures2d_DAISY object.

setUseOrientation(use_orientation: boolean): void;
use_orientation

use orientation argument (boolean).

getUseOrientation

Return the use orientation configured on this xfeatures2d_DAISY object.

getUseOrientation(): boolean;
Returns

The boolean result.

getDefaultName

Return the default name configured on this xfeatures2d_DAISY object.

getDefaultName(): string;
Returns

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