Skip to content

xfeatures2d_BRISK_create2

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

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

ARGUMENTSthresh, octaves, patternScale, _3
FUNCTIONxfeatures2d_BRISK_create2
RETURN TYPExfeatures2d_BRISK | null
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

The BRISK constructor for a custom pattern, detection threshold and octaves

xfeatures2d_BRISK_create2(thresh: number, octaves: number, radiusList: FloatVector, numberList: IntVector, dMax: number, dMin: number, indexChange: IntVector): xfeatures2d_BRISK | null;
4 available overloads
xfeatures2d_BRISK_create2(thresh: number, octaves: number, patternScale: FloatVector, _3: IntVector): xfeatures2d_BRISK | null;
xfeatures2d_BRISK_create2(radiusList: number, numberList: number, dMax: FloatVector, dMin: IntVector, indexChange: number): xfeatures2d_BRISK | null;
xfeatures2d_BRISK_create2(radiusList: number, numberList: number, dMax: FloatVector, dMin: IntVector, indexChange: number, _5: number): xfeatures2d_BRISK | null;
xfeatures2d_BRISK_create2(thresh: number, octaves: number, radiusList: FloatVector, numberList: IntVector, dMax: number, dMin: number, indexChange: IntVector): xfeatures2d_BRISK | null;
thresh

AGAST detection threshold score.

octaves

detection octaves. Use 0 to do single scale.

patternScale

apply this scale to the pattern used for sampling the neighbourhood of a keypoint.

_3

3 argument (IntVector).

radiusList

defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1).

numberList

defines the number of sampling points on the sampling circle. Must be the same size as radiusList..

dMax

threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1).

dMin

threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1).

indexChange

index remapping of the bits.

_5

5 argument (number).

Returns

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