@techstark/opencv-js
Version:
OpenCV JavaScript version for node.js or browser
23 lines (20 loc) • 534 B
text/typescript
import type { Feature2D, float, int } from "./_types";
/**
* https://docs.opencv.org/4.11.0/db/d95/classcv_1_1ORB.html
*/
export declare class ORB extends Feature2D {
public 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;