(c) 2025 Robert Strutts

main
Robert 8 months ago
parent 3f0e36a203
commit 779c444eed
  1. 2
      README.md
  2. 5
      coordinates.py
  3. 3
      dedup.py
  4. 3
      delibs.py

@ -61,6 +61,6 @@ python dedup.py 0.jpg 1.jpg
```
### Files made by get_dups Scripts:
error level: 0 = No a Dup, 1 = Duplicate, 2 = Close Match, 5 = Same GPS GEO-location, 8 = Invalid Image. Possible files: dups.txt, alike.txt, sameGPS.txt, and invalid.txt
error level: 0 = NOT a Dup, 1 = Duplicate, 2 = Close Match, 5 = Same GPS GEO-location, 8 = Invalid Image. Possible files: dups.txt, alike.txt, sameGPS.txt, and invalid.txt
[![Image of ScreenShot](Screenshot2025-04-26.png)]

@ -2,6 +2,11 @@ from PIL import Image
from PIL.ExifTags import TAGS, GPSTAGS
import os
"""
Copyright (c) 2025 by Robert Strutts
License: MIT
"""
def get_exif_data(image_path):
"""Get EXIF data from image file"""
try:

@ -6,7 +6,8 @@ import delibs
import coordinates
"""
Copyright 2025 - Robert Strutts MIT License
Copyright (c) 2025 by Robert Strutts
License: MIT
Key Optimizations:

@ -8,7 +8,8 @@ import numpy as np
import time
"""
Copyright 2025 - Robert Strutts MIT License
Copyright (c) 2025 by Robert Strutts
License: MIT
"""
start = time.perf_counter()

Loading…
Cancel
Save