UNPKG

@autojs/opencv

Version:

Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API for Auto.js Pro.

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>; }