• ios下编译opencv


    如果想要在ios下编译opencv 需要安装Cmake 这里通过homebrew 来安装cmake

    ios下打开终端然后先安装 homebrew :(mac 下自带ruby)

     ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    然后安装Cmake:

    brew install cmake

    装好cmake之后就可以使用git 下载opencv 源码了具体操作如下:

    git clone https://github.com/Itseez/opencv.git

    下面是官网的编译步骤,照着编译,现在是可以正常成功编译的。
    不过需要时间或许有点长。
    官网编译:
    ----------------------------------------------------------

    Building OpenCV from Source, using CMake and Command Line

    1. Make symbolic link for Xcode to let OpenCV build scripts find the compiler, header files etc.

      cd /
      sudo ln -s /Applications/Xcode.app/Contents/Developer Developer
      
    2. Build OpenCV framework:

      cd ~/<my_working_directory>
      python opencv/platforms/ios/build_framework.py ios
      

    If everything’s fine, a few minutes later you will get ~/<my_working_directory>/ios/opencv2.framework. You can add this framework to your Xcode projects.

    ================================================

    编译完成之后进入opencv目录可以找到 ios 目录

    ios目录下会有编译好的opencv 动态库 opencv2.framework

    还有一个 build 目录 在build目录下是针对各个cpu 架构编译的静态库:

    build-arm64-iphoneos

    build-armv7-iphoneos

    build-armv7s-iphoneos

    build-i386-iphonesimulator

    build-x86_64-iphonesimulator

    ---------------------------------------

    我是直接编译的arm64目录下的静态库 进入arm64目录

    可以用xcode 打开OpenCV.xcodeproj 直接使用xcode编译opencv针对arm64的静态库

    编译成功之后可以在该目录下 install 目录中找到 相应的静态库 和头文件

    lib和include 是直接就可以导入xcode工程中直接使用的。

    貌似opencv的编译使用也不是太复杂。 

    --------------------------------------------------------------------------

    参考:http://www.cnblogs.com/tonyspotlight/p/4568305.html

  • 相关阅读:
    iOS 定制controller过渡动画 ViewController Custom Transition使用体会
    iOS 和 Android 中的Alert
    iOS 中的frame,bounds,center,transform关联
    Android Services重点记录
    iOS 中的字体预览
    iOS 中关于ViewController总结
    iOS7 和 iOS6的页面兼容问题
    docker安装并修改Nginx镜像
    docker环境搭建
    Eclipse中.setting目录下文件介绍
  • 原文地址:https://www.cnblogs.com/wainiwann/p/6484484.html
Copyright © 2020-2023  润新知