Disable maximize button for displayed image window
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?
Not possible in OpenCV. The interface is more for debugging purposes. If you need the possibility to adapt GUI interfaces use a language designed for that like Qt.