Detecting duplicate images with Python
blog.iconfinder.com
Detecting duplicate images with Python
1–10 of 52 posts
Re: Detecting duplicate images with Python
#2Re: Detecting duplicate images with Python
#3Re: Detecting duplicate images with Python
#4I feel like this is doing something that was already done better (probably), but I enjoyed the article anyways. Nicely summarized what, why, and how.
Re: Detecting duplicate images with Python
#5Re: Detecting duplicate images with Python
#6I feel like this is doing something that was already done better (probably), but I enjoyed the article anyways. Nicely summarized what, why, and how.
Any idea of what might be a better approach?
[1] http://en.wikipedia.org/wiki/Scale-invariant_feature_transfo...
Re: Detecting duplicate images with Python
#7I feel like this is doing something that was already done better (probably), but I enjoyed the article anyways. Nicely summarized what, why, and how.
Any idea of what might be a better approach?
Re: Detecting duplicate images with Python
#8I feel like this is doing something that was already done better (probably), but I enjoyed the article anyways. Nicely summarized what, why, and how.
Any idea of what might be a better approach?
Re: Detecting duplicate images with Python
#9I feel like this is doing something that was already done better (probably), but I enjoyed the article anyways. Nicely summarized what, why, and how.
Any idea of what might be a better approach?
[1] http://en.wikipedia.org/wiki/Scale-invariant_feature_transfo...
[2] http://en.wikipedia.org/wiki/SURF
[3] http://www-db.deis.unibo.it/research/papers/IWOSS99.ABP.pdf
[4] http://www.hackerfactor.com/blog/index.php?/archives/529-Kin...
[5] http://www.hackerfactor.com/blog/index.php?/archives/529-Kin...
Re: Detecting duplicate images with Python
#10As mentioned in another comment, you really have to test different hashing algorithms to find one that suits your needs best. In general though, I think it is in most cases not necessary to develop an algorithm from scratch :)
For us, the much more challenging part was/is to develop a system that can find similar images quickly. If you are interested in things like that have a look at VP/MVP data structures (e.g. http://pnylab.com/pny/papers/vptree/vptree/, http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.43.7...).