zoukankan      html  css  js  c++  java
  • MAC 无脑编译OpenCV

    1:准备好OpenCV 源码包

      下载地址:https://opencv.org/releases.html

      编译教程:https://blog.csdn.net/computerme/article/details/53433315

    2:准备好cmake安装包;

      下载地址:https://cmake.org/download/

      安装教程https://blog.csdn.net/baimafujinji/article/details/78588488

    3:编译

      Demo:(main.cpp)

      

     1 #include <opencv2/opencv.hpp>
     2 
     3 using namespace cv;
     4 
     5 int main(int argc, char* argv[])
     6 {
     7     Mat img;
     8     img = imread("img.jpg",1);
     9     namedWindow("Display Image",WINDOW_AUTOSIZE);
    10     imshow("Display Image",img);
    11     waitKey(0);
    12     return 0;
    13 }

      g++ main.cpp -std=c++1z  -I/usr/local/include/ -L/usr/local/lib/ -lopencv_highgui.3.2.0 -lopencv_core.3.2.0 -lopencv_imgcodecs

    作者:长风 Email:844064492@qq.com QQ群:607717453 Git:https://github.com/zhaohu19910409Dz 开源项目:https://github.com/OriginMEK/MEK 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利. 感谢您的阅读。如果觉得有用的就请各位大神高抬贵手“推荐一下”吧!你的精神支持是博主强大的写作动力。 如果觉得我的博客有意思,欢迎点击首页左上角的“+加关注”按钮关注我!
  • 相关阅读:
    进程
    交换分区
    linux命令
    Linux进程
    开会
    今天的学习情况
    CentOS7.6 yum方式安装redis最新版
    Centos7 yum安装postgresql 9.5
    GitLab CI runner can't connect to tcp://localhost:2375 in kubernetes
    Server 2008 R2远程桌面授权,解决120天过期问题
  • 原文地址:https://www.cnblogs.com/zhaohu/p/8634882.html
Copyright © 2011-2022 走看看