Computing the difference between images

后端 未结 7 1736
傲寒
傲寒 2020-12-04 07:00

Do you guys know of any algorithms that can be used to compute difference between images?

Take this webpage for example http://tineye.com/ You give it a link or uplo

7条回答
  •  独厮守ぢ
    2020-12-04 07:13

    One technique is to use color histograms. You can use machine learning algorithms to find similar images based on the repesentation you use. For example, the commonly used k-means algorithm. I have seen other solutions trying to analyze the vertical and horizontal lines in the image after using edge detection. Texture analysis is also used.

    A recent paper clustered images from picasa web. You can also try the clustering algorithm that I am working on.

提交回复
热议问题