Finding similar images in a directory

0

1

What are good tools for windows for finding similar images (size and name varies) in a directory, and displaying them side by side, so I can choose which ones I wish to keep (deleting the other one) ?

Rook

Posted 2009-10-04T18:12:00.130

Reputation: 21 622

Question was closed 2015-04-26T11:36:24.413

Answers

3

See Duplicate images finder:

This application can search through your images collection and find duplicates not only by file name or size, but also by visual similarity.

image

harrymc

Posted 2009-10-04T18:12:00.130

Reputation: 306 093

that is pretty cool. – DaveParillo – 2009-10-04T18:23:52.573

0

AKS and Beyond Compare are great for side-by-side image comparison.

AKS:

alt text

Beyond Compare:

alt text

John T

Posted 2009-10-04T18:12:00.130

Reputation: 149 037

0

You can use imagemagick to create a clickable image directory containing an arbitrary collection of images:

convert  'vid:photos/random/*_orig.*' vid_index.html

See this page for an example output. You could then open them side by side in firefox or an image editor.

DaveParillo

Posted 2009-10-04T18:12:00.130

Reputation: 13 402

How does that help me ? If I wanted to compare them manually, I could've opened them in thumbnail mode in firefox, side by side ... or have I misunderstood you in some way ? – Rook – 2009-10-04T19:16:54.930

well, it depends on how many images you have & how deep your directory tree is. the nice thing about the vid format is that you could recursively descend a hierarchy & make a flat index. Each image could have a caption with the iamge name, size, type, comment, whatever. Gives you a venu to make your choice & delete. If you want to do more complex comparisons (finding the difference between 2 images) you can do that too, with a different imagemagick command. – DaveParillo – 2009-10-04T19:25:03.930

If you have few images to dealwith, frankly, I liked @harrymc's answer. – DaveParillo – 2009-10-04T19:25:54.927