UNPKG

opencv4nodejs-prebuilt

Version:

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

10 lines (8 loc) 375 B
import { KeyPointDetector } from './KeyPointDetector'; export class FASTDetector extends KeyPointDetector { readonly threshold: number; readonly type: number; readonly nonmaxSuppression: boolean; constructor(threshold?: number, nonmaxSuppression?: boolean, type?: number); constructor(params: { threshold?: number, nonmaxSuppression?: boolean, type?: number }); }