Ask Your Question

fupolarbear's profile - activity

2015-04-10 07:21:18 -0600 received badge  Nice Answer (source)
2015-01-03 04:45:48 -0600 received badge  Teacher (source)
2015-01-03 03:53:36 -0600 received badge  Necromancer (source)
2015-01-03 03:13:26 -0600 received badge  Editor (source)
2015-01-03 03:13:18 -0600 answered a question Opencv 2.4.9 highgui +qt: howto disable menu (right click context)

According to < http://docs.opencv.org/modules/highgu... >

use para 'CV_GUI_NORMAL' can solve your problem, following is the code from the official guide (url above):

cvNamedWindow("main2",CV_WINDOW_AUTOSIZE | CV_GUI_NORMAL);

the CV_GUI_NORMAL can disable the useless and annoying toolbox.

and I don't think recompiling OpenCV is a good idea.