1 | initial version |
According to < http://docs.opencv.org/modules/highgui/doc/qt_new_functions.html >
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);
2 | No.2 Revision |
According to < http://docs.opencv.org/modules/highgui/doc/qt_new_functions.html >
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.