I tried several options, but it seems that resizeWindow does nothing. I give a simple code example, the result is that 2 windows are the same size, while it should be of different sizes.
Mat m = imread("somePath",CV_LOAD_IMAGE_COLOR); namedWindow("aa",CV_WINDOW_NORMAL); namedWindow("bb",CV_WINDOW_NORMAL); imshow("aa",m); imshow("bb",m); resizeWindow("aa",400,400); resizeWindow("bb",800,800); waitKey(0);
I am working with eclipse-cdt on ubunto 12.04 with opencv 2.4.3.
- I tried to debug it by hitting a function, but I was not able to add highGui modoul as an external source, I get a compilation error for some h file.
source share