Near-Duplicate Image Detection - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T18:46:50Zhttp://stackoverflow.com/feeds/question/1034900http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1034900/near-duplicate-image-detection17Near-Duplicate Image Detection The Unknown2009-06-23T20:15:06Z2009-07-02T23:26:18Z
<p>What's a fast way to sort a given set of images by their similarity to each other. </p>
<p>At the moment I have a system that does histogram analysis between two images, but this is a very expensive operation and seems too overkill. </p>
<p>Optimally I am looking for a algorithm that would give each image a score (for example a integer score, such as the RGB Average) and I can just sort by that score. Identical Scores or scores next to each other are possible duplicates.</p>
<pre><code>0299393
0599483
0499994 <- possible dupe
0499999 <- possible dupe
1002039
4995994
6004994
</code></pre>
<p>RGB Average per image sucks, is there something similar?</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1035187#103518712Answer by Naaff for Near-Duplicate Image Detection Naaff2009-06-23T20:59:57Z2009-06-23T20:59:57Z<p>There has been a lot of research on image searching and similarity measures. It's not an easy problem. In general, a single <code>int</code> won't be enough to determine if images are very similar. You'll have a high false-positive rate.</p>
<p>However, since there has been a lot of research done, you might take a look at some of it. For example, <a href="http://www.cs.princeton.edu/courses/archive/spr05/cos598E/bib/p208-lv.pdf" rel="nofollow">this paper</a> (PDF) gives a compact image fingerprinting algorithm that is suitable for finding duplicate images quickly and without storing much data. It seems like this is the <em>right</em> approach if you want something robust.</p>
<p>If you're looking for something simpler, but definitely more ad-hoc, <a href="http://stackoverflow.com/questions/596262/image-fingerprint-to-compare-similarity-of-many-images">this SO question</a> has a few decent ideas.</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1035333#10353331Answer by Ian Boyd for Near-Duplicate Image Detection Ian Boyd2009-06-23T21:25:11Z2009-06-23T21:25:11Z<p>i assumed that other duplicate image search software performs an FFT on the images, and stores the values of the different frequencies as a vectors:</p>
<pre><code>Image1 = (u1, u2, u3, ..., un)
Image2 = (v1, v2, v3, ..., vn)
</code></pre>
<p>and then you can compare two images for <em>equalness</em> by computing the distance between the weight vectors of two images:</p>
<pre><code>distance = Sqrt(
(u1-v1)^2 +
(u2-v2)^2 +
(u2-v3)^2 +
...
(un-vn)^2);
</code></pre>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1035381#10353813Answer by Nosredna for Near-Duplicate Image Detection Nosredna2009-06-23T21:34:07Z2009-06-24T01:06:58Z<p>You have to decide what is "similar." Contrast? Hue?</p>
<p>Is a picture "similar" to the same picture upside-down?</p>
<p>I bet you can find a lot of "close calls" by breaking images up into 4x4 pieces and getting an average color for each grid cell. You'd have sixteen scores per image. To judge similarity, you would just do a sum of squares of differences between images.</p>
<p>I don't think a single hash makes sense, unless it's against a single concept like hue, or brightness, or contrast.</p>
<p>Here's your idea:</p>
<pre><code>0299393
0599483
0499994 <- possible dupe
0499999 <- possible dupe
1002039
4995994
6004994
</code></pre>
<p>First of all, I'm going to assume these are decimal numbers that are R*(2^16)+G*(2^8)+B, or something like that. Obviously that's no good because red is weighted inordinately.</p>
<p><a href="http://en.wikipedia.org/wiki/HSL%5Fcolor%5Fspace#Conversion%5Ffrom%5FRGB%5Fto%5FHSL%5For%5FHSV" rel="nofollow">Moving into HSV space</a> would be better. You could <a href="http://stackoverflow.com/questions/1024754/how-to-compute-a-3d-morton-number-interleave-the-bits-of-3-ints">spread the bits of HSV out</a> into the hash, or you could just settle H or S or V individually, or you could have three hashes per image.</p>
<p><hr /></p>
<p>One more thing. If you do weight R, G, and B. Weight green highest, then red, then blue to match human visual sensitivity.</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1035957#10359574Answer by Andrew Medico for Near-Duplicate Image Detection Andrew Medico2009-06-24T00:33:58Z2009-06-24T00:33:58Z<p>There's a C library ("libphash" - <a href="http://phash.org/" rel="nofollow">http://phash.org/</a>) that will calculate a "perceptual hash" of an image and allow you to detect similar images by comparing hashes (so you don't have to compare each image directly against every other image) but unfortunately it didn't seem to be very accurate when I tried it.</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1048723#10487231Answer by bpowah for Near-Duplicate Image Detection bpowah2009-06-26T11:55:29Z2009-06-26T11:55:29Z<p>One solution is to perform a <a href="http://mathworld.wolfram.com/Root-Mean-Square.html" rel="nofollow">RMS/RSS</a> comparison on every pair of pictures required to perform a bubble sort. Second, you could perform an <a href="http://mathworld.wolfram.com/FastFourierTransform.html" rel="nofollow">FFT</a> on each image and do some axis averaging to retrieve a single integer for each image which you would use as an index to sort by. You may consider doing whatever comparison on a resized (25%, 10%) version of the original depending on how small a difference you choose to ignore and how much speedup you require. Let me know if these solutions are interesting, and we can discuss or I can provide sample code. </p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1066585#10665853Answer by neilwhitaker1 for Near-Duplicate Image Detection neilwhitaker12009-06-30T23:23:09Z2009-06-30T23:23:09Z<p>A picture has many features, so unless you narrow yourself to one, like average brightness, you are dealing with an n-dimensional problem space.</p>
<p>If I asked you to assign a single integer to the cities of the world, so I could tell which ones are close, the results wouldn't be great. You might, for example, choose time zone as your single integer and get good results with certain cities. However, a city near the north pole and another city near the south pole can also be in the same time zone, even though they are at opposite ends of the planet. If I let you use two integers, you could get very good results with latitude and longitude. The problem is the same for image similarity.</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1072766#10727663Answer by zproxy for Near-Duplicate Image Detection zproxy2009-07-02T06:16:39Z2009-07-02T06:16:39Z<p>In the age of web services you could try <a href="http://tineye.com" rel="nofollow">http://tineye.com</a></p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1072948#10729487Answer by Luke Francl for Near-Duplicate Image Detection Luke Francl2009-07-02T07:20:38Z2009-07-02T07:20:38Z<p>I implemented a very reliable algorithm for this called <a href="http://grail.cs.washington.edu/projects/query/" rel="nofollow">Fast Multiresolution Image Querying</a>. My (ancient, unmaintained) code for that is <a href="http://eikon.recursion.org/" rel="nofollow">here</a>. </p>
<p>What Fast Multiresolution Image Querying does is split the image into 3 pieces based on the YIQ colorspace (better for matching differences than RGB). Then the image is essentially compressed using a wavelet algorithm until only the most prominent features from each colorspace are available. These points are stored in a data structure. Query images go through the same process, and the prominent features in the query image are matched against those in the stored database. The more matches, the more likely the images are similar.</p>
<p>The algorithm is often used for "query by sketch" functionality. My software only allowed entering query images via URL, so there was no user interface. However, I found it worked exceptionally well for matching thumbnails to the large version of that image.</p>
<p>Much more impressive than my software is <a href="http://labs.systemone.at/retrievr/" rel="nofollow">retrievr</a> which lets you try out the FMIQ algorithm using Flickr images as the source. Very cool! Try it out via sketch or using a source image, and you can see how well it works.</p>
http://stackoverflow.com/questions/1034900/near-duplicate-image-detection/1076507#10765075Answer by Edward Kmett for Near-Duplicate Image Detection Edward Kmett2009-07-02T20:23:59Z2009-07-02T23:26:18Z<p>I would recommend considering moving away from just using an RGB histogram. </p>
<p>A better digest of your image can be obtained if you take a 2d Haar wavelet of the image (its a lot easier than it sounds, its just a lot of averaging and some square roots used to weight your coefficients) and just retain the k largest weighted coefficients in the wavelet as a sparse vector, normalize it, and save that to reduce its size. You should rescale R G and B using perceptual weights beforehand at least or I'd recommend switching to YIQ (or YCoCg, to avoid quantization noise) so you can sample chrominance information with reduced importance.</p>
<p>You can now use the dot product of two of these sparse normalized vectors as a measure of similarity. The image pairs with the largest dot products are going to be very similar in structure. This has the benefit of being slightly resistant to resizing, hue shifting and watermarking, and being really easy to implement and compact.</p>
<p>You can trade off storage and accuracy by increasing or decreasing k.</p>
<p>Sorting by a single numeric score is going to be intractable for this sort of classification problem. If you think about it it would require images to only be able to 'change' along one axis, but they don't. This is why you need a vector of features. In the Haar wavelet case its approximately where the sharpest discontinuities in the image occur. You can compute a distance between images pairwise, but since all you have is a distance metric a linear ordering has no way to express a 'triangle' of 3 images that are all equally distant. (i.e. think of an image that is all green, an image that is all red and an image that is all blue.)</p>
<p>That means that any real solution to your problem will need O(n^2) operations in the number of images you have. Whereas if it had been possible to linearize the measure, you could require just O(n log n), or O(n) if the measure was suitable for, say, a radix sort. That said, you don't need to spend O(n^2) since in practice you don't need to sift through the whole set, you just need to find the stuff thats nearer than some threshold. So by applying one of several techniques to partition your sparse vector space you can obtain much faster asymptotics for the 'finding me k of the images that are more similar than a given threshold' problem than naively comparing every image against every image, giving you what you likely need... if not precisely what you asked for.</p>
<p>In any event, I used this a few years ago to good effect personally when trying to minimize the number of different textures I was storing, but there has also been a lot of research noise in this space showing its efficacy (and in this case comparing it to a more sophisticated form of histogram classification):</p>
<p><a href="http://www.cs.princeton.edu/cass/papers/spam_ceas07.pdf" rel="nofollow">http://www.cs.princeton.edu/cass/papers/spam_ceas07.pdf</a></p>
<p>If you need better accuracy in detection, the minHash and tf-idf algorithms can be used with the Haar wavelet (or the histogram) to deal with edits more robustly:</p>
<p><a href="http://cmp.felk.cvut.cz/~chum/papers/chum_bmvc08.pdf" rel="nofollow">http://cmp.felk.cvut.cz/~chum/papers/chum_bmvc08.pdf</a></p>
<p>Finally, Stanford has an image search based on a more exotic variant of this kind of approach, based on doing more feature extraction from the wavelets to find rotated or scaled sections of images, etc, but that probably goes way beyond the amount of work you'd want to do. </p>
<p><a href="http://wang14.ist.psu.edu/cgi-bin/zwang/regionsearch_show.cgi" rel="nofollow">http://wang14.ist.psu.edu/cgi-bin/zwang/regionsearch_show.cgi</a></p>