码迷,mamicode.com
首页 > 其他好文 > 详细

基于 VS2019 配置 opencv4.x

时间:2020-01-28 17:26:07      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:printf   mic   class   src   imp   code   could not   int   read   

创建新项目

技术图片

添加主函数文件

技术图片
技术图片

配置

技术图片
技术图片
技术图片
技术图片
技术图片
技术图片

添加环境变量

技术图片

技术图片

测试

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

using namespace cv;
using namespace std;

int main()
{
    Mat img = imread("C:\\Users\\Pictures\\test.jpg");
    if (img.empty())
    {
        printf("Could not find the image!\n");
        return -1;
    }

    imshow("ImputImage", img);

    waitKey(0);
    return 0;
}

基于 VS2019 配置 opencv4.x

标签:printf   mic   class   src   imp   code   could not   int   read   

原文地址:https://www.cnblogs.com/wbyixx/p/12238317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!