1 | initial version |
The solution is pretty straightforward, though it is not mentioned in documents when looking for the namedWindow arguments.
namedWindow("Name", CV_WINDOW_NORMAL); setWindowProperty("Name", CV_WND_PROP_FULLSCREEN, CV_WINDOW_FULLSCREEN); imshow("Name", your_image); waitKey(0);
2 | No.2 Revision |
The solution is pretty straightforward, though it is not mentioned in documents when looking for the namedWindow arguments.
namedWindow("Name", CV_WINDOW_NORMAL);
setWindowProperty("Name", CV_WND_PROP_FULLSCREEN, CV_WINDOW_FULLSCREEN);
imshow("Name", your_image);
3 | No.3 Revision |
The solution is pretty straightforward, though it is not mentioned in documents when looking for the namedWindow namedWindow arguments.
namedWindow("Name", CV_WINDOW_NORMAL);
setWindowProperty("Name", CV_WND_PROP_FULLSCREEN, CV_WINDOW_FULLSCREEN);
imshow("Name", your_image);
waitKey(0);