Skip to content

Commit

Permalink
Merge pull request justadudewhohacks#607 from diesal11/patch-1
Browse files Browse the repository at this point in the history
Add missing `cv.moveWindow` type definition
  • Loading branch information
justadudewhohacks authored Aug 5, 2019
2 parents 4d585cc + 4192529 commit 4425af5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/typings/cv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export function medianBlur(mat: Mat, kSize: number): Mat;
export function medianBlurAsync(mat: Mat, kSize: number): Promise<Mat>;
export function minMaxLoc(mat: Mat, mask?: Mat): { minVal: number, maxVal: number, minLoc: Point2, maxLoc: Point2 };
export function minMaxLocAsync(mat: Mat, mask?: Mat): Promise<{ minVal: number, maxVal: number, minLoc: Point2, maxLoc: Point2 }>;
export function moveWindow(winName: string, x: number, y: number): void;
export function mulSpectrums(mat: Mat, mat2: Mat, dftRows?: boolean, conjB?: boolean): Mat;
export function mulSpectrumsAsync(mat: Mat, mat2: Mat, dftRows?: boolean, conjB?: boolean): Promise<Mat>;
export function partition(data: Point2[], predicate: (pt1: Point2, pt2: Point2) => boolean): { labels: number[], numLabels: number };
Expand Down

0 comments on commit 4425af5

Please sign in to comment.