Ask Your Question

vishal733's profile - activity

2018-11-01 07:47:49 -0600 asked a question Using shared_ptr/cv::Ptr as userdata in callbacks

Using shared_ptr/cv::Ptr as userdata in callbacks I am tracking mouse clicks inside an OpenCV display window by using:

2018-06-11 06:13:53 -0600 received badge  Student (source)
2014-04-03 04:15:50 -0600 asked a question 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?