C ++比较冲浪描述符算法匹配中断几次

时间:2011-05-13 08:30:55

标签: c++ gcc opencv g++ surf

我编写了一个c ++应用程序来比较图像中的点匹配(OpenSurf C ++),但有时候,从几千个“getUniqueMatches”中得到1,应用程序在“getUniqueMatches”中的某些点断开。我有这个日志:

05/13/11 10:17:16: this->pointsA = 227
05/13/11 10:17:16: this->pointsB = 226
05/13/11 10:17:16: this->matches before = 0
05/13/11 10:17:16: 227 226 0 0.650000
05/13/11 10:17:16: Starting in getUniqueMatches

-- And here breaks, inside getUniqueMatches --

这是代码:

inline bool findInVector(std::vector<int> v, int value) {
    int size = v.size();
    for(int i=0; i<size; i++) {
        if(v[i] == value) {
            return true;
        }
    }

    return false;
}

void getUniqueMatches(IpVec &ipts1, IpVec &ipts2, IpPairVec &matches, float ratio) {
    try {
        wLog(f("%d %d %d %f", ipts1.size(), ipts2.size(), matches.size(), ratio));

        float dist, d1, d2;
        Ipoint *match;

        matches.clear();

        std::vector<int> matched;

        wLog("Starting in getUniqueMatches");

        // Breaks after here

        int size = ipts1.size();
        int size2 =  ipts2.size();

        for (int i = 0; i < size; i++) {
            d1 = d2 = FLT_MAX;

            int foundJ = -1;

            for (unsigned int j = 0; j < size2; j++) {
                dist = ipts1[i] - ipts2[j];

                if (dist < d1 && !findInVector(matched, j)) {
                    d2 = d1;
                    d1 = dist;
                    match = &ipts2[j];
                    foundJ = j;
                } else if (dist < d2) {
                    d2 = dist;
                }
            }

            if (d1 / d2 < ratio) {
                ipts1[i].dx = match->x - ipts1[i].x;
                ipts1[i].dy = match->y - ipts1[i].y;

                matches.push_back(std::make_pair(ipts1[i], *match));
                matched.push_back(foundJ);
            }
        }
    } catch(std::exception ex) {
        wLog(f("Exception in getUniqueMatches: ", ex.what()));
        return;
    }
}

这里只有几次休息。我不知道发生了什么,也许是错的?执行此函数时,应用程序仅使用1个线程。提取点时使用10个线程。

在Centos5(VPS)上使用它。 2 Gb RAm 使用了20%的高清 使用g ++(性能模式)编译,IDE使用Netbeans。 OpenCV,libcurl。

2 个答案:

答案 0 :(得分:1)

我怀疑有两件事:

  • g ++编译器优化。使用-O2或更少; -O3及以后有时会产生奇怪的行为,特别是关于浮点运算。

  • 如果减少优化无法解决问题,我建议您更改

    if (d1 / d2 < ratio)

    if (d1 < double(ratio)*d2)

    避免被零除(我认为不太可能发生)以及更好的精确结果。

答案 1 :(得分:0)

更改

if (d1 / d2 < ratio) {

if(d2 > 0 && ...) {

我认为问题是除以零,但并没有抛出异常。 :(