opencv4nodejs
Version:
Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.
10 lines (8 loc) • 387 B
TypeScript
import { KeyPointDetector } from './KeyPointDetector.d';
export class AGASTDetector 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 });
}