UNPKG

opencv4nodejs

Version:

Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.

12 lines (10 loc) 540 B
import { FeatureDetector } from './FeatureDetector.d'; export class SURFDetector extends FeatureDetector { readonly nOctaves: number; readonly nOctaveLayers: number; readonly hessianThreshold: number; readonly extended: boolean; readonly upright: boolean; constructor(hessianThreshold?: number, nOctaves?: number, nOctaveLayers?: number, extended?: boolean, upright?: boolean); constructor(params: { hessianThreshold?: number, nOctaves?: number, nOctaveLayers?: number, extended?: boolean, upright?: boolean }); }