Created
January 29, 2018 11:38
-
-
Save mstankie/9fa79f3f03611a888d97425a95361f8f to your computer and use it in GitHub Desktop.
HighGUI fullscren window
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cv::namedWindow("Fullscreen", cv::WINDOW_NORMAL); | |
cv::setWindowProperty("Fullscreen", cv::WND_PROP_FULLSCREEN, cv::WINDOW_FULLSCREEN); | |
cv::imshow("Fullscreen", someImage); | |
cv::waitKey(10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment