Skip to content

FastFeatureDetector_create

Features and matchingfunctionOpenCV 5.0.0
import { FastFeatureDetector_create } from '@banou/opencv-wasm'

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

ARGUMENTSthreshold, nonmaxSuppression, _2
FUNCTIONFastFeatureDetector_create
RETURN TYPEFastFeatureDetector | null
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

Create an owned FastFeatureDetector instance with the supplied configuration.

Wrapping class for feature detection using the FAST method.

FastFeatureDetector_create(threshold: number, nonmaxSuppression: boolean, _2: number): FastFeatureDetector | null;
4 available overloads
FastFeatureDetector_create(): FastFeatureDetector | null;
FastFeatureDetector_create(threshold: number): FastFeatureDetector | null;
FastFeatureDetector_create(threshold: number, nonmaxSuppression: boolean): FastFeatureDetector | null;
FastFeatureDetector_create(threshold: number, nonmaxSuppression: boolean, _2: number): FastFeatureDetector | null;
threshold

threshold argument (number).

nonmaxSuppression

nonmax suppression argument (boolean).

_2

2 argument (number).

Returns

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