JPEG built-in checksum / fingerprint? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T01:42:36Zhttp://stackoverflow.com/feeds/question/217544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217544/jpeg-built-in-checksum-fingerprint2JPEG built-in checksum / fingerprint?Parand2008-10-20T04:53:59Z2008-10-20T13:06:38Z
<p>I'm putting together a script to find remove duplicates in a large library of images. At the moment I'm doing a two pass filter of first finding files of the same size and then doing a sha256 on a 10240 byte piece of the file to get a fingerprint of the files with the same size (code <a href="http://parand.com/say/index.php/2008/10/15/python-script-for-finding-and-removing-duplicate-files/" rel="nofollow">here</a>).</p>
<p>It works well, but I'm guessing there are probably checksums built in to the jpeg format that I could use instead of doing the sha256. </p>
<p>Does anyone know if there are checksums or other components that could act as checksums / fingerprints? If so, is there an efficient way to access them?</p>
http://stackoverflow.com/questions/217544/jpeg-built-in-checksum-fingerprint/217552#2175521Answer by jdt141 for JPEG built-in checksum / fingerprint?jdt1412008-10-20T05:00:23Z2008-10-20T05:00:23Z<p>Its been awhile since I've dug into the IJG library, but I don't think there's an easy class member or function call you can use there to check for some type of fingerprint. You could use the built in EXIF tags if you can control the encoding of the images... </p>
http://stackoverflow.com/questions/217544/jpeg-built-in-checksum-fingerprint/217553#2175532Answer by Mark Ransom for JPEG built-in checksum / fingerprint?Mark Ransom2008-10-20T05:01:17Z2008-10-20T05:01:17Z<p>I don't think the JPEG specification includes any kind of checksum in the way you're describing.</p>
<p>A JPEG can contain a thumbnail as part of its EXIF metadata, though. It's not a perfect indicator, since it's possible for two different images to have the same thumbnail. There's at least one documented case of a thumbnail not being replaced after the image had undergone substantial modifications, said thumbnail revealing much more than the publisher had intended.</p>
http://stackoverflow.com/questions/217544/jpeg-built-in-checksum-fingerprint/217556#2175560Answer by goldenmean for JPEG built-in checksum / fingerprint?goldenmean2008-10-20T05:04:10Z2008-10-20T05:04:10Z<p>Hi,
In JPEG standard(ITU-T.81) i believe there isn't any field/syntax element which has a checksum or such, for the whole compressed jpeg image file. Unless a customised application puts such filed in the Application segment, or as meta data for which segments are provided in the standard.
So to serve your purpose, what you are doing is one soln.
Other could be some kind a application wrapper which will call some binary file compare utlitiy (like beyond compare, or even a windows command <strong>fc /b</strong>) and check the result of that compare utility and take the decision u want to.</p>
<p>-AD</p>
http://stackoverflow.com/questions/217544/jpeg-built-in-checksum-fingerprint/218348#2183480Answer by graham.reeds for JPEG built-in checksum / fingerprint?graham.reeds2008-10-20T13:06:38Z2008-10-20T13:06:38Z<p>One way you could perform is reduce all images to a fixed size and store that as a thumbnail. Then the image comparison would compare similar sized images and give you a chance of being a duplicate - useful if you have cropped (unless cropped heavily) or resized images and want to find those 'duplicates'.</p>