Glibcxx 编译 FREAK OpenCV 演示文件时出错

Posted

技术标签:

【中文标题】Glibcxx 编译 FREAK OpenCV 演示文件时出错【英文标题】:Glibcxx error compiling FREAK OpenCV demo file 【发布时间】:2014-01-16 20:00:39 【问题描述】:

我已经尝试过这个文件来编译

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/nonfree/features2d.hpp>
#include <opencv2/legacy/legacy.hpp>

using namespace cv;

static void help( char** argv )

    std::cout << "\nUsage: " << argv[0] << " [path/to/image1] [path/to/image2] \n"
              << "This is an example on how to use the keypoint descriptor presented in the following paper: \n"
              << "A. Alahi, R. Ortiz, and P. Vandergheynst. FREAK: Fast Retina Keypoint. \n"
              << "In IEEE Conference on Computer Vision and Pattern Recognition, 2012.     CVPR 2012 Open Source Award winner \n"
              << std::endl;


int main( int argc, char** argv ) 
    // check http://docs.opencv.org/doc/tutorials/features2d/table_of_content_features2d/table_of_content_features2d.html
    // for OpenCV general detection/matching framework details

    if( argc != 3 ) 
        help(argv);
        return -1;
    

    // Load images
    Mat imgA = imread(argv[1], CV_LOAD_IMAGE_GRAYSCALE );
    if( !imgA.data ) 
        std::cout<< " --(!) Error reading image " << argv[1] << std::endl;
        return -1;
    

    Mat imgB = imread(argv[2], CV_LOAD_IMAGE_GRAYSCALE );
    if( !imgB.data ) 
        std::cout << " --(!) Error reading image " << argv[2] << std::endl;
        return -1;
    

    std::vector<KeyPoint> keypointsA, keypointsB;
    Mat descriptorsA, descriptorsB;
    std::vector<DMatch> matches;

    // DETECTION
    // Any openCV detector such as
    SurfFeatureDetector detector(2000,4);

    // DESCRIPTOR
    // Our proposed FREAK descriptor
    // (roation invariance, scale invariance, pattern radius corresponding to         SMALLEST_KP_SIZE,
    // number of octaves, optional vector containing the selected pairs)
    // FREAK extractor(true, true, 22, 4, std::vector<int>());
    FREAK extractor;

    // MATCHER
    // The standard Hamming distance can be used such as
    // BruteForceMatcher<Hamming> matcher;
    // or the proposed cascade of hamming distance using SSSE3
    BruteForceMatcher<Hamming> matcher;

    // detect
    double t = (double)getTickCount();
    detector.detect( imgA, keypointsA );
    detector.detect( imgB, keypointsB );
    t = ((double)getTickCount() - t)/getTickFrequency();
    std::cout << "detection time [s]: " << t/1.0 << std::endl;

    // extract
    t = (double)getTickCount();
    extractor.compute( imgA, keypointsA, descriptorsA );
    extractor.compute( imgB, keypointsB, descriptorsB );
    t = ((double)getTickCount() - t)/getTickFrequency();
    std::cout << "extraction time [s]: " << t << std::endl;

    // match
    t = (double)getTickCount();
    matcher.match(descriptorsA, descriptorsB, matches);
    t = ((double)getTickCount() - t)/getTickFrequency();
    std::cout << "matching time [s]: " << t << std::endl;

    // Draw matches
    Mat imgMatch;
    drawMatches(imgA, keypointsA, imgB, keypointsB, matches, imgMatch);

    namedWindow("matches", CV_WINDOW_KEEPRATIO);
    imshow("matches", imgMatch);
    waitKey(0);

用这个命令

gcc freak_demo.cpp `pkg-config opencv --cflags --libs`

并收到此错误消息

/usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld:     /tmp/ccwSmrle.o: undefined reference to symbol '_ZNSsD1Ev@@GLIBCXX_3.4'
/usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld: note:  '_ZNSsD1Ev@@GLIBCXX_3.4' is defined in DSO /usr/lib64/libstdc++.so.6 so try adding it to the linker command line
/usr/lib64/libstdc++.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status

我不知道 GLIBCXX 是什么。我必须安装哪个软件包(OpenSuse 13.1、gcc 4.8)?我不知道如何解释错误消息,感谢任何帮助。

【问题讨论】:

您是否尝试过:“_ZNSsD1Ev@@GLIBCXX_3.4' 定义在 DSO /usr/lib64/libstdc++.so.6 中,所以尝试将其添加到链接器命令行”? 尝试g++ 而不是gcc 【参考方案1】:

正如Daniel Frey 在his comment 中所说,使用g++ 而不是gcc。这为我解决了完全相同的问题,但是编译了一个完全不同的程序。

【讨论】:

以上是关于Glibcxx 编译 FREAK OpenCV 演示文件时出错的主要内容,如果未能解决你的问题,请参考以下文章

OpenCV 例程 300篇249. 特征描述之视网膜算法(FREAK)

OpenCV 例程 300篇249. 特征描述之视网膜算法(FREAK)

GCC编译宏_GLIBCXX_USE_CXX11_ABI背景分析和实现原理

GCC编译宏_GLIBCXX_USE_CXX11_ABI背景分析和实现原理

GCC编译宏_GLIBCXX_USE_CXX11_ABI背景分析和实现原理

GLIBCXX_3.4.9' not found - 解决办法