UNPKG

opencv4nodejs

Version:

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

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