欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[学习笔记]MacOS下使用Xcode配置opencv环境

程序员文章站 2024-03-23 20:27:46
...

[学习笔记]MacOS下使用Xcode配置opencv环境

安装homebrew
终端安装cmake,opencv

brew install cmake
brew install opencv

Xcode创建工程command line tool

创建完成,左上角点击工程文件
build settings→search paths

Header search paths设置路径*/usr/local/Cellar/opencv/4.5.0_1/include/opencv4*

Library search paths设置路径*/usr/local/Cellar/opencv/4.5.0_1/lib*

(版本不同需路径修改)

new group,将/usr/local/Cellar/opencv/4.5.0_1/lib中后缀名为dylib的文件导入(可以只拖入需要的,copy items if needed根据情况需要勾选)
[学习笔记]MacOS下使用Xcode配置opencv环境

测试代码

#include<iostream>
#include<opencv2//core/core.hpp>
#include<opencv2/highgui/highgui.hpp>

using namespace cv;
using namespace std;

int main() {
    cout << "Hello, World!\n";
    Mat img;
    img=imread("/Users/theugene/Desktop/code/c++/opencv_test/opencv_test/dog.jpg");
    namedWindow("123");
    imshow("123", img);
    waitKey(6000);
    return 0;
}

测试图片[学习笔记]MacOS下使用Xcode配置opencv环境

网上搜索其他博客,方法不唯一,需要注意的是配置路径一定要正确。