xfeatures2d_FREAK_create
import { xfeatures2d_FREAK_create } from '@banou/opencv-wasm'Use after await initOpenCV(). See the initialization and named imports guide.
ARGUMENTSorientationNormalized, scaleNormalized, patternScale, nOctaves
FUNCTIONxfeatures2d_FREAK_create
RETURN TYPExfeatures2d_FREAK | null
Create an owned xfeatures2d_FREAK instance with the supplied configuration.
Class implementing the FREAK (Fast Retina Keypoint) keypoint descriptor, described in [AOV12] .
xfeatures2d_FREAK_create(orientationNormalized: boolean, scaleNormalized: boolean, patternScale: number, nOctaves: number, selectedPairs: IntVector): xfeatures2d_FREAK | null;6 available overloads
xfeatures2d_FREAK_create(): xfeatures2d_FREAK | null;xfeatures2d_FREAK_create(orientationNormalized: boolean): xfeatures2d_FREAK | null;xfeatures2d_FREAK_create(orientationNormalized: boolean, scaleNormalized: boolean): xfeatures2d_FREAK | null;xfeatures2d_FREAK_create(orientationNormalized: boolean, scaleNormalized: boolean, patternScale: number): xfeatures2d_FREAK | null;xfeatures2d_FREAK_create(orientationNormalized: boolean, scaleNormalized: boolean, patternScale: number, nOctaves: number): xfeatures2d_FREAK | null;xfeatures2d_FREAK_create(orientationNormalized: boolean, scaleNormalized: boolean, patternScale: number, nOctaves: number, selectedPairs: IntVector): xfeatures2d_FREAK | null;orientationNormalizedEnable orientation normalization.
scaleNormalizedEnable scale normalization.
patternScaleScaling of the description pattern.
nOctavesNumber of octaves covered by the detected keypoints.
selectedPairs(Optional) user defined selected pairs indexes,
Returns
The xfeatures2d_FREAK | 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.