UNPKG

@autojs/opencv

Version:

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

8 lines (6 loc) 189 B
import { KeyPoint } from './KeyPoint.d'; import { Mat } from './Mat.d'; export class KeyPointDetector { detect(image: Mat): KeyPoint[]; detectAsync(image: Mat): Promise<KeyPoint[]>; }