xfeatures2d_DAISY
import { xfeatures2d_DAISY } from '@banou/opencv-wasm'Use after await initOpenCV(). See the initialization and named imports guide.
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;radiusradius argument (number).
q_radiusq radius argument (number).
q_thetaq theta argument (number).
q_histq hist argument (number).
normnorm argument (number).
Hh argument (Mat).
interpolationinterpolation argument (boolean).
use_orientationuse orientation argument (boolean).
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;The this result.
setRadius
Set the radius used by this xfeatures2d_DAISY object.
setRadius(radius: number): void;radiusradius argument (number).
getRadius
Return the radius configured on this xfeatures2d_DAISY object.
getRadius(): number;The number result.
setQRadius
Set the qradius used by this xfeatures2d_DAISY object.
setQRadius(q_radius: number): void;q_radiusq radius argument (number).
getQRadius
Return the qradius configured on this xfeatures2d_DAISY object.
getQRadius(): number;The number result.
setQTheta
Set the qtheta used by this xfeatures2d_DAISY object.
setQTheta(q_theta: number): void;q_thetaq theta argument (number).
getQTheta
Return the qtheta configured on this xfeatures2d_DAISY object.
getQTheta(): number;The number result.
setQHist
Set the qhist used by this xfeatures2d_DAISY object.
setQHist(q_hist: number): void;q_histq hist argument (number).
getQHist
Return the qhist configured on this xfeatures2d_DAISY object.
getQHist(): number;The number result.
setNorm
Set the norm used by this xfeatures2d_DAISY object.
setNorm(norm: number): void;normnorm argument (number).
getNorm
Return the norm configured on this xfeatures2d_DAISY object.
getNorm(): number;The number result.
setH
Set the h used by this xfeatures2d_DAISY object.
setH(H: Mat): void;Hh argument (Mat).
getH
Return the h configured on this xfeatures2d_DAISY object.
getH(): Mat;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;interpolationinterpolation argument (boolean).
getInterpolation
Return the interpolation configured on this xfeatures2d_DAISY object.
getInterpolation(): boolean;The boolean result.
setUseOrientation
Set the use orientation used by this xfeatures2d_DAISY object.
setUseOrientation(use_orientation: boolean): void;use_orientationuse orientation argument (boolean).
getUseOrientation
Return the use orientation configured on this xfeatures2d_DAISY object.
getUseOrientation(): boolean;The boolean result.
getDefaultName
Return the default name configured on this xfeatures2d_DAISY object.
getDefaultName(): string;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.