1
我在codeblocks IDE中安裝了OpenCV 2.4.0,在我的windows 32bit pc中使用此link的幫助。我認真遵循所有步驟。該應用程序無法正確啓動(0xc00000be)
當我運行下面的代碼效果很好:
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
cout<<"Hello"<<endl;
return 0;
}
但是當我運行這段代碼就說明應用程序無法正常啓動(0xc00000be)
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
cv::Mat im = cv::imread("m.jpg");
if (im.empty())
{
cout << "Cannot open image!" << endl;
return -1;
}
cout<<"image is showing.......\n";
cv::imshow("image", im);
// waitKey(0);
cout<<"Hello"<<endl;
return 0;
}
是否有任何其他配置可以與代碼塊中的opencv良好地協作。
我GOOGLE了一下,發現它不是一個問題,而是配置Windows的問題。我堅持了幾個小時的谷歌搜索,沒有發現任何有用的信息。