@techstark/opencv-js
Version:
OpenCV JavaScript version for node.js or browser
12 lines (11 loc) • 497 B
TypeScript
import type { Feature2D, float, int } from "./_types";
/**
* https://docs.opencv.org/master/db/d95/classcv_1_1ORB.html
*/
export declare class ORB extends Feature2D {
constructor(nfeatures?: int, scaleFactor?: float, nlevels?: int, edgeThreshold?: int, firstLevel?: int, WTA_K?: int, scoreType?: ORBScoreType, patchSize?: int, fastThreshold?: int);
}
type ORBScoreType = int;
export declare const ORB_HARRIS_SCORE: ORBScoreType;
export declare const ORB_FAST_SCORE: ORBScoreType;
export {};