我已经广泛搜索并检查了我能找到的任何地方。我有Visual Studio 2015和OpenCV 3.0.0。我之前没有使用OpenCV,尽管检查了有关此事的教程。我找不到任何3.0.0我一直试图运行测试应用程序:
#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], IMREAD_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", WINDOW_AUTOSIZE ); .
imshow( "Display window", image ); // Show our image inside it.
waitKey(0); // Wait for a keystroke in the window
return 0;
}
过了一段时间,我设法得到关于缺少库的抱怨(例如,你包括staticlib:
D:\opencv\build\x64\vc12\staticlib
进入链接器的附加库目录。 然而。我仍然无法构建代码(取自http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to OpenCV文档) 由于以下错误:
Error C2146 syntax error: missing ';' before identifier 'image' 31
尝试构建时只会出现此错误。 Intellisense没有投诉,并接受Mat作为一个班级。 如果它有用,我还可以提供我的附加依赖项和所有其他更改的设置。