UNPKG

opencv4nodejs

Version:

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

9 lines (7 loc) 310 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>; }