I want to disallow the user from resizing a displayed image window.
One method I am already employing is to create window with following parameter:
cv::namedWindow("Frame",CV_WINDOW_AUTOSIZE);
CV_WINDOW_AUTOSIZE
disables resizing of window by dragging.
However, I the window still shows a maximize button, which let's the user maximize the window to full screen. How can I disable this maximize button?