From 779c444eed5e47222fba1ada986e3bb746fc2ec9 Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 27 Apr 2025 22:41:00 -0400 Subject: [PATCH] (c) 2025 Robert Strutts --- README.md | 2 +- coordinates.py | 5 +++++ dedup.py | 3 ++- delibs.py | 3 ++- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1b1915..a238e39 100644 --- a/README.md +++ b/README.md @@ -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)] diff --git a/coordinates.py b/coordinates.py index 8853023..12523bb 100644 --- a/coordinates.py +++ b/coordinates.py @@ -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: diff --git a/dedup.py b/dedup.py index af998a5..5841be4 100644 --- a/dedup.py +++ b/dedup.py @@ -6,7 +6,8 @@ import delibs import coordinates """ -Copyright 2025 - Robert Strutts MIT License +Copyright (c) 2025 by Robert Strutts +License: MIT Key Optimizations: diff --git a/delibs.py b/delibs.py index 4457391..93cbd6a 100644 --- a/delibs.py +++ b/delibs.py @@ -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()