Using SIFT descriptors to compare similarity between two images

你离开我真会死。 提交于 2019-12-04 21:23:12

Basic euclidean distance together with a heuristic that stipulated that a match is only accepted if it is significantly better than the second best match. As advocated by the (co) inventer, Lowe

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!