我正在尝试构建我的第一个opencv应用程序,我添加了include目录和库目录,然后添加了链接输入,这是运行此代码后的一些opencv.lib文件:
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
Mat im = imread("c:/full/path/to/lena.jpg");
if (im.empty())
{
cout << "Cannot load image!" << endl;
return -1;
}
imshow("Image", im);
waitKey(0);
}
但是我收到了这个错误:
程序无法启动,因为您的计算机缺少libgcc_s_dw2-1.dll。
错误列表包括:
警告1警告D9002:忽略未知选项'-static-libgcc'c:\ Users \ Kato \ documents \ visual studio 2010 \ Projects \ cvtest \ cvtest \ cl cvtest
我将-static-libgcc添加到命令行附加选项但是同样的错误。