我正在运行此代码:
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main( int argc, char** argv ) {
if( argc != 2)
{
cout <<" Usage: display_image ImageToLoadAndDisplay" << endl;
return -1;
}
Mat image;
image = imread(argv[1], CV_LOAD_IMAGE_COLOR); // Read the file
if(! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
namedWindow( "Display window", CV_WINDOW_AUTOSIZE );// Create a window for display.
imshow( "Display window", image ); // Show our image inside it.
waitKey(0); // Wait for a keystroke in the window
return 0; }
但它对我不起作用,因为它在我编写cmake时在屏幕上显示此错误。在终端:
cv.h:找不到文件。
有人能帮帮我吗?它在一个月前就开始运作了。
答案 0 :(得分:3)
你有链接问题,试试这个;
g++ `pkg-config --cflags --libs opencv` filename.cpp -o filename
答案 1 :(得分:0)
您可以在Visual Studio的情况下更改链接器属性。 对于Makefile,您需要确保正确设置了opencv_dir。