UNPKG

opencv4nodejs-prebuilt

Version:

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

9 lines (7 loc) 302 B
import { KeyPointDetector } from './KeyPointDetector'; import { KeyPoint } from './KeyPoint.d'; import { Mat } from './Mat.d'; export class FeatureDetector extends KeyPointDetector { compute(image: Mat, keypoints: KeyPoint[]): Mat; computeAsync(image: Mat, keypoints: KeyPoint[]): Promise<Mat>; }