opencv安装与配置vs2019

opencv安装

1.下载并解压opencv-4.5.4-vc14_vc15.exe

(1)官网下载Releases - OpenCVhttps://opencv.org/releases/

或者:链接:https://pan.baidu.com/s/1R0T4FqXqDuqgA5Ukgphi9g 
提取码:8n9b

官方下载注意:一定等秒数加载后显示download点击。

opencv安装与配置vs2019_第1张图片

 opencv安装与配置vs2019_第2张图片

解压完一定是该目录!!!!!!

 opencv安装与配置vs2019_第3张图片

2.创建空项目 必须改成x64

opencv安装与配置vs2019_第4张图片

3.右键first(自己的工程项目)点击属性

opencv安装与配置vs2019_第5张图片

4.在包含目录中添加图片中D:/....../build/include

D:/......./include/opencv2

opencv安装与配置vs2019_第6张图片

5.在库目录下同样添加4中的D:/....../build/include

D:/......./include/opencv2

opencv安装与配置vs2019_第7张图片

6.在附加依赖项中添加自己所下版本中的opencv_world。。。。此处我的是opencv_world453d.lib

opencv安装与配置vs2019_第8张图片

7.在附加库目录中添加自己的lib目录,此处我的是D:\Vs studio graph\opencv\opencv\build\x64\vc15\lib

opencv安装与配置vs2019_第9张图片

8.点击控制面板.........在环境变量中添加地址D:\Vs studio graph\opencv\opencv\build\bin

D:\Vs studio graph\opencv\opencv\build\x64\vc15\bin

根据自己的目录进行添加!!!

opencv安装与配置vs2019_第10张图片

9.将如下3个dll文件复制到C:\Windows\SysWOW64和C:\Windows\System32

opencv安装与配置vs2019_第11张图片opencv安装与配置vs2019_第12张图片

10.测试官方代码 

// Test application for the Visual Studio Image Watch Debugger extension
#include                         // std::cout
#include            // cv::Mat
#include      // cv::imread()
#include      // cv::Canny()
using namespace std;
using namespace cv;
void help()
{
    cout
        << "----------------------------------------------------" << endl
        << "This is a test program for the Image Watch Debugger " << endl
        << "plug-in for Visual Studio. The program loads an     " << endl
        << "image from a file and runs the Canny edge detector. " << endl
        << "No output is displayed or written to disk."
        << endl
        << "Usage:" << endl
        << "image-watch-demo inputimage" << endl
        << "----------------------------------------------------" << endl
        << endl;
}
int main(int argc, char* argv[])
{
    help();
    if (argc != 2)
    {
        cout << "Wrong number of parameters" << endl;
        return -1;
    }
    cout << "Loading input image: " << argv[1] << endl;
    Mat input;
    input = imread(argv[1], IMREAD_COLOR);
    cout << "Detecting edges in input image" << endl;
    Mat edges;
    Canny(input, edges, 10, 100);
    return 0;
}

你可能感兴趣的:(opencv,计算机视觉,图像处理,1024程序员节)