UNPKG

opencv4nodejs

Version:

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

10 lines (8 loc) 212 B
import { Mat } from './Mat.d'; import { Rect } from './Rect.d'; export class TrackerKCF { constructor(); clear(): void; init(frame: Mat, boundingBox: Rect): boolean; update(frame: Mat): Rect; }