OpenCV与Code :: Blocks

时间:2013-12-28 18:14:37

标签: opencv codeblocks

我正在使用Code :: Blocks和OpenCV库 我写了以下代码

#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>

using namespace cv;
using namespace std;

int main(int argc)
{
 src = imread( argc[1], 1 );
 cout << "Hello world!" << endl;
 return 0;
 }

当我运行代码时,会出现以下窗口 这个问题的解决方案是什么:( enter image description here

1 个答案:

答案 0 :(得分:0)

您必须添加正确的库:Howto use libraries with Code::Blocks