3

我正在阅读此处提供的 vl_ubcmatch 的函数源代码,我试图了解它是如何计算分数的,以及它在内部技术上是如何工作的。

但是,这个 C 代码有这些宏、奇怪的 ## 变量之类的,以及我没有经验的东西。所以这里的主要问题是我在 C 语言方面的无能。如果可能的话,有人可以告诉我,究竟是如何vl_ubcmatch工作的?它如何比较两个描述符?

4

1 回答 1

13

这在Scale-Invariant Keypoints 的独特图像特征的第 7.1 节和第 7.2 节中进行了解释。

该函数的文档在这里:http ://www.vlfeat.org/mdoc/VL_UBCMATCH.html

仅当 d1 和 d2 之间的距离明显小于到 d1 和图像 2 中任何其他特征的距离时,才使用从图像 1 中的特征 d1 到图像 2 中的特征 d2 的匹配。匹配需要明显优于任何其他特征潜在匹配。“显着”由您传递给 VL_UBCMATCH 函数的阈值定义。

第 7.2 节提到了一个近似最近邻搜索结构,但 VL_UBCMATCH 不使用这个:

for(k1 = 0 ; k1 < K1 ; ++k1, L1_pt += ND ) {                        \
                                                                    \
  PROMOTE_##MXC best = maxval ;                                     \
  PROMOTE_##MXC second_best = maxval ;                              \
  int bestk = -1 ;                                                  \
                                                                    \
  /* For each point P2[k2] in the second image... */                \
  for(k2 =  0 ; k2 < K2 ; ++k2, L2_pt += ND) {                      \
                                                                    \
    int bin ;                                                       \
    PROMOTE_##MXC acc = 0 ;                                         \
    for(bin = 0 ; bin < ND ; ++bin) {                               \
      PROMOTE_##MXC delta =                                         \
        ((PROMOTE_##MXC) L1_pt[bin]) -                              \
        ((PROMOTE_##MXC) L2_pt[bin]) ;                              \
      acc += delta*delta ;                                          \
    }                                                               \
                                                                    \
    /* Filter the best and second best matching point. */           \
    if(acc < best) {                                                \
      second_best = best ;                                          \
      best = acc ;                                                  \
      bestk = k2 ;                                                  \
    } else if(acc < second_best) {                                  \
      second_best = acc ;                                           \
    }                                                               \
  }                                                                 \
                                                                    \
  L2_pt -= ND*K2 ;                                                  \
                                                                    \
  /* Lowe's method: accept the match only if unique. */             \
  if(thresh * (float) best < (float) second_best &&                 \
     bestk != -1) {                                                 \
    pairs_iterator->k1 = k1 ;                                       \
    pairs_iterator->k2 = bestk ;                                    \
    pairs_iterator->score = best ;                                  \
    pairs_iterator++ ;                                              \
  }                                                                 \
}

这是伪代码:

matches = []
For each descriptor k1 in image 1:
    closest_match_distance = Infinity
    second_closest_match_distance = Infinity
    best_match = None
    For each descriptor k2 in image 2:
        distance_squared = d(k1, k2)
        if (distance_squared < closest_match_distance):
            second_closest_match_distance = closest_match_distance
            closest_match_distance = distance_squared
            best_match = k2
    If (threshold * closest_match_distance <
      second_closest_match_distance AND best_match != None):
        matches.Insert((k1, best_match, closest_match_distance))
return matches
于 2012-12-01T19:34:13.117 回答