1. 程式人生 > >Xcode下配置Caffe遇到的坑以及解決辦法

Xcode下配置Caffe遇到的坑以及解決辦法

本人蔘考http://blog.csdn.net/baobei0112/article/details/50954934#comments進行配置

中途遇到了一些問題如下

1、can not find openblas

不知為什麼我當時明明已經安裝過了,還是報這個錯,通過下兩個語句選擇一個語句執行即可

brew install  homebrew/science/openblas          ---> 直接安裝

brew install --build-from-source homebrew/science/openblas     --> 通過編譯原始碼安裝

同時還需要將openblas的lib路徑新增到Library Search Paths中


cv::imread(cv::String const&, int)", referenced from:
      caffe::WindowDataLayer<float>::InternalThreadEntry() in window_data_layer.o
      caffe::WindowDataLayer<double>::InternalThreadEntry() in window_data_layer.o
      caffe::ReadImageToCVMat(std::string const&,int,int
,bool) in io.o "cv::imdecode(cv::_InputArray const&, int)", referenced from: caffe::DecodeDatumToCVMat(caffe::Datumconst&,int,int,bool) in io.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1(use -v to see invocation)
出現上述資訊的原因是cv::imread是在opencv_imgcodecs中定義的,然而這篇部落格中並沒有加-lopencv_imgcodecs,將它在Linker Flags也加上即可