Skip to content

Commit 4192529

Browse files
author
Dylan Lundy
authored
Add missing cv.moveWindow type definition
`cv.moveWindow` is implemented by this project but not defined in typings.
1 parent 4d585cc commit 4192529

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/typings/cv.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ export function medianBlur(mat: Mat, kSize: number): Mat;
133133
export function medianBlurAsync(mat: Mat, kSize: number): Promise<Mat>;
134134
export function minMaxLoc(mat: Mat, mask?: Mat): { minVal: number, maxVal: number, minLoc: Point2, maxLoc: Point2 };
135135
export function minMaxLocAsync(mat: Mat, mask?: Mat): Promise<{ minVal: number, maxVal: number, minLoc: Point2, maxLoc: Point2 }>;
136+
export function moveWindow(winName: string, x: number, y: number): void;
136137
export function mulSpectrums(mat: Mat, mat2: Mat, dftRows?: boolean, conjB?: boolean): Mat;
137138
export function mulSpectrumsAsync(mat: Mat, mat2: Mat, dftRows?: boolean, conjB?: boolean): Promise<Mat>;
138139
export function partition(data: Point2[], predicate: (pt1: Point2, pt2: Point2) => boolean): { labels: number[], numLabels: number };

0 commit comments

Comments
 (0)