我写这样的代码:
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace std;
using namespace cv;
int main()
{
Mat image = imread("lena.jpg");
if(!image.data)
{
cout << "error" <<endl;
return -1;
}
namedWindow("window");
imshow("window",image);
waitKey(27);
return 0;
}
在代码块 12.11 中:
它无法显示图像,并且窗口说
XX.exe has stopped working
windows is checking for a solution to the problem...
在 qtcreator 2.4.1
结果没问题。
我试过 cvImageShow 都可以
代码块 12.11 的问题?