How to use Chamfer Matching algorithm for finding 'Similar Images'

前端 未结 1 908
-上瘾入骨i
-上瘾入骨i 2020-12-29 11:19

I would like to ask for more information on how Chamfer Matching algorithm (an edge matching algorithm) can be used to find \'similar\' images. I would like to know if it is

相关标签:
1条回答
  • 2020-12-29 11:36

    The Chamfer Matching Algorithm basically calculates the distance (dis-similarity) between two images. The basic idea is to:

    1. Extract the edge/contours of a query image as well as target image.
    2. Take one point/pixel of contour in query image and find the distance of a closest point/pixel of contour in target image.
    3. Sum the distances for all edge points/pixels of query image.

    This gives the Chamfer Distance i.e. a value of dis-similarity between two images. The lower the value better the result. However, you have to take care of scaling, and sliding windows as well if target image is larger than query image which is often the case.

    You could find working exampling on opencv\modules\contrib.

    0 讨论(0)
提交回复
热议问题