如何让 Microsoft Visual Studio 2017 到 link 到 OpenCV 3.4 库?

How do I get Microsoft Visual Studio 2017 to link to the OpenCV 3.4 libraries?

我已下载:

微软 Visual Studio 2017 (14.0)

Microsoft Visual C++ 2017 x64 (14.12.25810)

和 OpenCV 3.4

我尝试将这个 Whosebug 程序获取到 运行。

#include<iostream>
#include<opencv2/highgui/highgui.hpp>

usingnamespacecv;
usingnamespacestd;

intmain()
{
    Matim = imread("c:/full/path/to/lena.jpg");
    if(im.empty())
    {      
        cout<<"Cannotloadimage!"<< endl;
        return -1;
    }   
    imshow("Image", im);  
    waitKey(0);}

但是我得到一个错误:

cannot open source file 

"opencv2/highgui/highgui.hpp"

我搜索过:

Opencv.org

Docs.opencv.org

Learnopencv.com

whosebug.com

Gethub.com

Quora.com

人工智能小屋

Google

None 这些站点为我的第一步现代问题提供了准确的解决方案。我还没有找到#enclude 库的方法。有人知道我正在寻找的信息吗?

最佳答案位于:

在 Visual C++ 2010 Express 中安装 OpenCV 2.4.3 [关闭]

意识到它必须针对 Visual Studio 2017 和 OpenCV 3.4

进行更新

尝试在 C/C++ 的配置属性中包含 Opencv3.4\build\include,并在链接器路径中设置 lib 文件和 .lib 名称。