0

我正在使用 SIFT 算法来确定两个图像之间的相似度。我设法获得了图像的描述符列表,但我似乎不知道下一步该做什么。我的问题是我有不同数量的描述符,它们的顺序可能不一样。比较这些描述符的最佳方法是什么?

谢谢。

4

2 回答 2

0

For each descriptor in image A, find its nearest neighbor in image B. That gives you an approximate correspondance between the descriptors in each image. From there, you need to do some geometry consistency checking to eliminate the many false matches that are generated in the first stage. This can be done using RANSAC.

于 2012-04-04T07:10:12.750 回答
0

基本欧几里得距离和一个启发式规则,该规则规定只有当匹配明显优于次优匹配时才接受匹配。正如(共同)发明人所倡导的那样,Lowe

于 2012-04-02T12:26:44.703 回答