Skip to content

Instantly share code, notes, and snippets.

@mstankie
Created January 29, 2018 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mstankie/9fa79f3f03611a888d97425a95361f8f to your computer and use it in GitHub Desktop.
Save mstankie/9fa79f3f03611a888d97425a95361f8f to your computer and use it in GitHub Desktop.
HighGUI fullscren window
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