Christina-B dup_images 20130731
Posted:
Problem: Write a program in python to find duplicate images in given directories.
Requirements:
Python Image Library(PIL)
Input:
Directories in which images are to be searched.
- Description
- Collect the images present in the directories mentioned.
- Compare the images using Image.difference(imag1, imag2).getbbox(), where imag1 and imag2 are name of the images.
- If the function returns None then the images are identical
- Click the link to view the program
- link
- Execution
- $ python duplicatImages.py /home/user/Downloads /home/user/Documents