使用Xcode的OSX Mavericks上的OpenCV

我想在Xcode的OSX上运行OpenCV。 我已经从github下载了代码。 并用cmake编译它。

接下来,我使用以下代码创建了一个新的Xcode项目:

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

using namespace cv;
using namespace std;

int main( int argc, char** argv )
{
    if( argc != 2)
    {
        cout <<" Usage: display_image ImageToLoadAndDisplay" << endl;
        return -1;
    }

    Mat image;
    image = imread("img.jpg");   // Read the file

    if(! image.data )                              // Check for invalid input
    {
        cout <<  "Could not open or find the image" << std::endl ;
        return -1;
    }

    namedWindow( "Display window", WINDOW_AUTOSIZE );// Create a window for display.
    imshow( "Display window", image );                   // Show our image inside it.

    waitKey(0);                                          // Wait for a keystroke in the window

    return 0;
}

接下来,我将头部搜索路径设置为:/ usr / local / include

之后,我在“构建阶段”中添加了/ usr / local / lib中的库,如下面的截图所示。

图片描述http://answers.opencv.org/upfiles/13912699992370041.png

但是,当我尝试运行时出现以下错误:

ld: library not found for -lopencv_core.3.0.0
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我错了什么?


在搜索标题路径时,请双击属性。 如果你看到空字符串没有进入那里,慢慢点击两次,因为它弹出一个新的属性列表添加新的属性值下按回车

如果它不工作,检查你的字符串


您还应该将/usr/local/lib添加到库搜索路径中。

链接地址: http://www.djcxy.com/p/68807.html

上一篇: OpenCV on OSX Mavericks with Xcode

下一篇: Specifying a build action (e.g. install) in Xcode GUI