Ask Your Question

Revision history [back]

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);

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);

waitKey(0);

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);