opencv2.4.8 window title bug with vs2008 (Bug #3688)
Description
I'm using OpenCV2.4.8, VS2008, Win7 on my machine, my code is exactly as follows:char *wn="ab";
namedWindow(wn);
Mat img(240, 320, CV_32F, 0.7);
cout<<img.at<float>(0, 0)<<endl;
imshow(wn, img);
waitKey();
and the image window is like:
I've tried the same code in VS2012, and there is no such an error. Though it's not a major problem when coding, it just looks pretty boring... Hope someone know someway to solve it ;)
PS: I built the vc9 version of opencv248 with vs2008 on my own, not sure if that has something to do with the problem...
I've posted this problem on S.O. here: http://stackoverflow.com/questions/23532070/opencv-or-vs2008-window-title-string-bug
Associated revisions
Merge pull request #3688 from jet47:test-script-optional-color-3.0
History
Updated by Vladislav Vinogradov almost 11 years ago
- Status changed from New to Open
- Category set to highgui-gui
- Priority changed from High to Normal
Updated by Chen ZHANG almost 11 years ago
- Status changed from Open to Cancelled