opencv4nodejs
Version:
Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.
10 lines (8 loc) • 384 B
TypeScript
import { KeyPointDetector } from './KeyPointDetector';
export class FASTDetector extends KeyPointDetector {
readonly threshold: number;
readonly type: number;
readonly nonmaxSuppression: boolean;
constructor(threshold?: number, nonmaxSuppression?: boolean, type?: number);
constructor(params: { threshold?: number, nonmaxSuppression?: boolean, type?: number });
}