Mac下opencv的配置
刚换mac 好多东西不会 配置环境 每次都要折腾一大壶
这次折腾下opencv 废话不多切入正题
1.准备工作:
在Terminal中输入:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" //这里网上有的教程是用github的,github老是被墙反正我有时候翻不过去
下载Homebrew(通过终端方便的使用它安装管理苹果没有自带的UNIX相关工具软件)附一个学习链接(http://www.zhouming.me/2011/07/mac-os-x-homebrew-install/)
2.安装cmake:(用到1中装的工具)
在Terminal中输入:
brew install cmake
3.安装opencv:
方法一:(这样安装安装的是opencv 2.4.9)
brew install opencv
如果出现
Error: No available formula for opencv (我出现了2333)
在输入brew install opencv前 先输入
brew tap homebrew/science (会卡一下 直接输入brew install opencv好了)
方法二:(可以安装opencv3.0)
先下载opencv的包,然后在终端中进入存放解压后的opencv文件夹,新建一个空的文件夹release,进入该文件夹,编译安装opencv,使用命令如下:
mkdir release
cd release
cmake -G "Unix Makefiles" .. (会卡一下 直接输入make好了)
make
sudo make install
安装好的lib文件存放在“/usr/local/lib”文件夹,h文件存放在“/usr/local/include”。(自动完成的不是要手动的)
//
// main.cpp
// Opencv_test
//
// Created by 李泽 on 14/11/5.
// Copyright (c) 2014年 ___VISSAC___. All rights reserved.
//
#include <iostream>
#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv/cvaux.hpp>
#include <fstream>
using namespace std;
#define BYTE unsigned char
int main(int argc, const char * argv[])
{
// insert code here...
#if 1
//get the image from the directed path
IplImage* img = cvLoadImage("/Users/lize/aaa.png", 1);
//NSLog(img);
//create a window to display the image
cvNamedWindow("picture", 1);
//show the image in the window
cvShowImage("picture", img);
//wait for the user to hit a key
cvWaitKey(0);
//delete the image and window
cvReleaseImage(&img);
cvDestroyWindow("picture");
#endif
//return
return 0;
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。