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点击。

5ec8016a3eeb4a1db38b32eadc7184e1.png

 3587153d04254646a4637e8d78c7be19.png

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

 6dc881a0b8954872acc35300cc221a09.png

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

cdefa1db66824ba9ba9e2f3fe7f39d0e.png

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

3ea6640810544efa8b6164da313856fe.png

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

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

83eb0a2202f644c1a8be6d709d3d9d07.png

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

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

64b3c38d194147d38f6b076979e7a2f8.png

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

78184cf5875948db9d3357c54853fc21.png

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

b816982a07f94190910f8716739d4a9c.png

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

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

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

f557a758abc946bca510f7f8f7dfff76.png

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

360f27f51fdd4c0996ad969854728e62.pnge6a3fc917cdf42ddadc81656ad422ebe.png

10.测试官方代码 

// Test application for the Visual Studio Image Watch Debugger extension
#include <iostream>                        // std::cout
#include <opencv2/core/core.hpp>           // cv::Mat
#include <opencv2/imgcodecs/imgcodecs.hpp>     // cv::imread()
#include <opencv2/imgproc/imgproc.hpp>     // 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;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

平杨猪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值