highgui: ability to better control the fullscreen window

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2017-11-03 14:00:02 +01:00
parent ec4fb12dcf
commit 3a60e4485a
4 changed files with 55 additions and 1 deletions

View File

@@ -13,6 +13,10 @@ void Window_IMShow(const char* winname, Mat mat) {
cv::imshow(winname, *mat);
}
void Window_SetWindowProperty(const char* winname, int flag, double value) {
cv::setWindowProperty(winname, flag, value);
}
int Window_WaitKey(int delay = 0) {
return cv::waitKey(delay);
}