电脑 macbookpro2019
Xcode 版本
终端下
xcodebuild -version
Xcode 12.3
Build version 12C33
opencv 4.51
HomeBrew 的作用大家自行度娘
我按照博主我今天不想努力鸭,https://blog.csdn.net/wo164683812/article/details/80114999
但是在配置的时候也遇到很多的问题
博主也说的很清楚了,但是遇到了一下几个问题,如果你也遇到了,希望对你有所作用
终端下输入命令
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
提示我有下面的错误,
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
这个问题我按照博文
https://blog.csdn.net/qq_43531694/article/details/106862753
解决方式一
(1)打开网站: https://www.ipaddress.com/
查询一下 raw.githubusercontent.com对应的IP 地址
(2)替换系统的host文件
注意:最好复制一份出来在更改
sudo vi /etc/hosts
加上红色部分。
ping 一下这个网址
成功
命令
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"```
这样我就成功了
接着按照博主的操作就可以了
https://blog.csdn.net/qq_43531694/article/details/106862753
至于环境搭配的可以按照b站的视频来搞
https://www.bilibili.com/video/BV12z4y1r7pm?from=search&seid=10121858390886428817```
测试代码
#include
#include
#include
#include
#include
using namespace cv;
using namespace std;
int main(int argc, const char * argv[]) {
// insert code here...
Mat myimage = imread("/Users/ml123/Desktop/my/my.jpg");
if(! myimage.empty())
{
imshow("my",myimage);
Mat grayimge,edge;
//cvtColor(myimage, grayimge, CV_BGR2GRAY);
}
else
{return 1;}
waitKey(0);
std::cout << "Hello, World!\n";
return 0;
}