A Photography forum. PhotoBanter.com

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PhotoBanter.com forum » Digital Photography » Digital Photography
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Wanted: Software to Find Duplicate Image Files on Hard Drive



 
 
Thread Tools Display Modes
  #1  
Old December 9th 07, 03:18 AM posted to rec.photo.digital
HKEK
external usenet poster
 
Posts: 3
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

I am looking for software that can eliminate dulplicate image files on
my hard drive. I would like this software to find all duplicates so I
can eliminate them before backing up the image files to a DVD.
Ideally, the software should be able to identify identical image files
even if they have different file names [but the same image/pixels]. I
would imagine that such software exists.

Any recommendations? -- Thanks!
  #2  
Old December 9th 07, 04:17 AM posted to rec.photo.digital
Jürgen Exner
external usenet poster
 
Posts: 1,579
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

HKEK wrote:
I am looking for software that can eliminate dulplicate image files on
my hard drive. I would like this software to find all duplicates so I
can eliminate them before backing up the image files to a DVD.
Ideally, the software should be able to identify identical image files
even if they have different file names [but the same image/pixels]. I
would imagine that such software exists.


I don't know of any pre-existing program but the core algorithm shouldn't
take more than maybe 10 lines in any decend scripting language like e.g.
Perl. Because literal comparison of file content is quite expensive I would
compute and store some checksum, e.g. MD5, and do a binary comparision only
if the checksums of 2 files match.

Add another 20-30 lines for standard overhead and user interaction and you
got a nice little script. I may actually do it if I feel bored this weekend.

jue



  #3  
Old December 9th 07, 06:26 AM posted to rec.photo.digital
jimbok[_2_]
external usenet poster
 
Posts: 15
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

On Sat, 8 Dec 2007 19:18:07 -0800 (PST), HKEK
wrote:

I am looking for software that can eliminate dulplicate image files on
my hard drive.
Any recommendations? -- Thanks!


DeDuper is a small freeware program that finds exact duplicates, but
is limited to jpg and bmp. It's quite fast.

http://www.niftyprograms.com/deduper.htm

VisiPics is another freeware program that finds exact dups and near
dups, depending on settings used. It can compare jpg, bmp, tiff, png,
etc. Not quite as fast as DeDuper but more flexible.

http://www.download.com/VisiPics/300...-10712877.html
jimbok
  #4  
Old December 9th 07, 08:43 AM posted to rec.photo.digital
Dennis Pogson
external usenet poster
 
Posts: 257
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

jimbok wrote:
On Sat, 8 Dec 2007 19:18:07 -0800 (PST), HKEK
wrote:

I am looking for software that can eliminate dulplicate image files
on my hard drive.
Any recommendations? -- Thanks!


DeDuper is a small freeware program that finds exact duplicates, but
is limited to jpg and bmp. It's quite fast.

http://www.niftyprograms.com/deduper.htm

VisiPics is another freeware program that finds exact dups and near
dups, depending on settings used. It can compare jpg, bmp, tiff, png,
etc. Not quite as fast as DeDuper but more flexible.

http://www.download.com/VisiPics/300...-10712877.html
jimbok


There is a program called Windows which does that very well if you know the
names of the files which may be duplicated. You can get it from Microsoft.
Aren't they in Seattle or somewhere?

DP


  #5  
Old December 9th 07, 09:41 AM posted to rec.photo.digital
Neil Ellwood[_3_]
external usenet poster
 
Posts: 49
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

Dennis Pogson wrote:

There is a program called Windows which does that very well if you
know the names of the files which may be duplicated. You can get it
from Microsoft. Aren't they in Seattle or somewhere?

DP


No, they are in my dustbin. I use debian (much more reliable).

--
Neil
reverse ra and delete l
Linux user 335851
  #6  
Old December 9th 07, 12:34 PM posted to rec.photo.digital
Ender
external usenet poster
 
Posts: 3
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

Try d'peg http://www.somewareonthe.net/index_dpeg.htm
I've used this to sort through thousands of pictures and it works like a
charm. It's extremely powerful and will find dups that have been
cropped, rotated or color corrected


HKEK wrote:
I am looking for software that can eliminate dulplicate image files on
my hard drive. I would like this software to find all duplicates so I
can eliminate them before backing up the image files to a DVD.
Ideally, the software should be able to identify identical image files
even if they have different file names [but the same image/pixels]. I
would imagine that such software exists.

Any recommendations? -- Thanks!

  #7  
Old December 9th 07, 01:33 PM posted to rec.photo.digital
John Bean
external usenet poster
 
Posts: 584
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

On Sun, 09 Dec 2007 12:34:28 GMT, Ender
wrote:

Try d'peg http://www.somewareonthe.net/index_dpeg.htm
I've used this to sort through thousands of pictures and it works like a
charm. It's extremely powerful and will find dups that have been
cropped, rotated or color corrected


Surely they're not duplicates in that case?

--
John Bean
  #8  
Old December 9th 07, 06:30 PM posted to rec.photo.digital
m II
external usenet poster
 
Posts: 592
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

John Bean wrote:

On Sun, 09 Dec 2007 12:34:28 GMT, Ender
wrote:

Try d'peg http://www.somewareonthe.net/index_dpeg.htm
I've used this to sort through thousands of pictures and it works like a
charm. It's extremely powerful and will find dups that have been
cropped, rotated or color corrected


Surely they're not duplicates in that case?



I've seen many politicians reverse themselves any number of times, yet
they remain exactly identical to their previous contents and quality.




mike

  #9  
Old December 9th 07, 10:32 PM posted to rec.photo.digital
Paul Allen
external usenet poster
 
Posts: 301
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

On Sun, 09 Dec 2007 04:17:22 GMT
"Jürgen Exner" wrote:

HKEK wrote:
I am looking for software that can eliminate dulplicate image files
on my hard drive. I would like this software to find all duplicates
so I can eliminate them before backing up the image files to a DVD.
Ideally, the software should be able to identify identical image
files even if they have different file names [but the same
image/pixels]. I would imagine that such software exists.


I don't know of any pre-existing program but the core algorithm
shouldn't take more than maybe 10 lines in any decend scripting
language like e.g. Perl. Because literal comparison of file content
is quite expensive I would compute and store some checksum, e.g. MD5,
and do a binary comparision only if the checksums of 2 files match.

Add another 20-30 lines for standard overhead and user interaction
and you got a nice little script. I may actually do it if I feel
bored this weekend.


Yup. Humans are all natural born puzzle solvers. What is it that
makes so many of us think we can't write simple software like this?

My first whack would be a hybrid of perl and bash. Stuff this in
a file called "finddups":

#!/usr/bin/perl
while () {
chop;
@tokens = split / +/, $_;
if (exists($files{$tokens[0]})) {
print "$tokens[1] is a duplicate of $files{$tokens[0]}\n";
} else {
$files{$tokens[0]} = $tokens[1];
}
}

Then do something like this:

find / -name \*.jpg -exec md5sum {} \;| ./finddups

Adjust the find as needed if you also have .JPG, .jpeg, .JPEG, or
whatever. It'll take a long time because md5sum is expensive, but
it will identify all the dups on your disk.

Gee, that was fun! Now all it needs is to bring the find and the
MD5 stuff inside the perl script and add a nice Tk GUI. I could
sell it to people who think they can't program and get rich! :-)

Paul Allen
  #10  
Old December 10th 07, 03:30 AM posted to rec.photo.digital
HKEK
external usenet poster
 
Posts: 3
Default Wanted: Software to Find Duplicate Image Files on Hard Drive

On Dec 9, 8:02 am, Jake Orsen wrote:
On Sun, 09 Dec 2007 06:26:15 GMT, jimbok wrote:
On Sat, 8 Dec 2007 19:18:07 -0800 (PST), HKEK
wrote:


I am looking for software that can eliminate dulplicate image files on
my hard drive.
Any recommendations? -- Thanks!


DeDuper is a small freeware program that finds exact duplicates, but
is limited to jpg and bmp. It's quite fast.


http://www.niftyprograms.com/deduper.htm


VisiPics is another freeware program that finds exact dups and near
dups, depending on settings used. It can compare jpg, bmp, tiff, png,
etc. Not quite as fast as DeDuper but more flexible.


http://www.download.com/VisiPics/300...-10712877.html
jimbok


Here's anotherhttp://www.bolidesoft.com/imagecomparer.html

Here's an excellent freeware one that was originally designed for use with
making tiled images from many smaller imageshttp://www.keronsoft.com/dupdetector.html

There's hundreds of such utilities out there. The only ones that don't know
about these are the resident-trolls in this newsgroup who have zero experience
with real photography. They become more and more obvious the more that you know
about real photography.- Hide quoted text -

- Show quoted text -


That one is a bit scary. I don't want to eliminate "similar" shots.
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Software to recover deleted image files Benny Digital Photography 25 July 16th 07 06:10 PM
Software to recover deleted image files Benny Digital SLR Cameras 21 July 16th 07 06:10 PM
Kodak Easyshare software and Drive Image Ex Digital Photography 1 June 26th 06 09:30 PM
WTB: USB External hard drive Guns/Zen4 Digital Photo Equipment For Sale 0 June 2nd 06 03:21 AM
Tips wanted for Image Bird photo organizer software [email protected] Digital Photography 2 November 14th 05 09:30 AM


All times are GMT +1. The time now is 01:31 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PhotoBanter.com.
The comments are property of their posters.