File size: 23,309 Bytes
9f86577 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 |
import tkinter as tk
from tkinter import filedialog, messagebox, ttk
import os
import threading
import queue
import hashlib
import shutil
import imagehash
from PIL import Image
# Global variables for controlling filtering and error handling
stop_event = threading.Event()
error_messages = []
error_window = None
filtered_hashes = set()
selected_files = []
worker_thread = None
def open_image_filter():
global error_messages, error_window, filtered_hashes, selected_files
global save_dir_var, status_var, num_files_var, errors_var, thread_count_var, progress
global q, format_filter_var, filter_duplicate_var, min_size_var, max_size_var
global min_total_resolution_var, max_total_resolution_var, format_mode_var, format_filter_label
global delete_originals_var, worker_thread, root, stop_button, saved_files
# Create the Tkinter window
root = tk.Tk()
root.title("Image Filter")
# Initialize Tkinter variables
save_dir_var = tk.StringVar()
status_var = tk.StringVar()
num_files_var = tk.StringVar()
errors_var = tk.StringVar(value="Errors: 0")
thread_count_var = tk.StringVar(value="1")
progress = tk.IntVar()
q = queue.Queue()
format_filter_var = tk.StringVar()
filter_duplicate_var = tk.BooleanVar()
min_size_var = tk.IntVar()
max_size_var = tk.IntVar()
min_total_resolution_var = tk.IntVar()
max_total_resolution_var = tk.IntVar()
format_mode_var = tk.StringVar(value="exclude") # 'include' or 'exclude'
# Initialize variable for deleting original images
delete_originals_var = tk.BooleanVar()
def center_window(window):
window.update_idletasks()
width = window.winfo_width() + 120 # Add 120 pixels to width
height = window.winfo_height()
x = (window.winfo_screenwidth() // 2) - (width // 2)
y = (window.winfo_screenheight() // 2) - (height // 2)
window.geometry(f'{width}x{height}+{x}+{y}')
def select_directory():
filepaths = filedialog.askopenfilenames(
title="Select Images",
filetypes=[("All Image files", "*.jpg;*.jpeg;*.png;*.gif;*.bmp;*.tiff")]
)
if filepaths:
selected_files.clear()
selected_files.extend(filepaths)
update_selected_files_label()
def choose_directory():
directory = filedialog.askdirectory()
if directory:
save_dir_var.set(directory)
save_dir_entry.config(state='normal')
save_dir_entry.delete(0, tk.END)
save_dir_entry.insert(0, directory)
save_dir_entry.config(state='readonly')
def hash_image(file_path):
"""Create a hash based on image pixels to identify similar images."""
try:
image = Image.open(file_path)
return str(imagehash.phash(image)) # Sử dụng perceptual hash
except Exception as e:
error_messages.append(f"Error hashing file {file_path}: {e}")
update_error_count()
return None
def filter_duplicate_images(filepaths):
unique_images = {}
filtered_files = []
for filepath in filepaths:
image_hash = hash_image(filepath)
if image_hash:
if image_hash in unique_images:
existing_file = unique_images[image_hash]
# So sánh và chọn ảnh có độ phân giải lớn hơn
try:
existing_image = Image.open(existing_file)
current_image = Image.open(filepath)
existing_resolution = existing_image.size[0] * existing_image.size[1]
current_resolution = current_image.size[0] * current_image.size[1]
# Giữ ảnh có độ phân giải lớn hơn
if current_resolution > existing_resolution:
unique_images[image_hash] = filepath
except Exception as e:
error_messages.append(f"Error reading image {filepath}: {e}")
update_error_count()
else:
unique_images[image_hash] = filepath
else:
filtered_files.append(filepath)
# Thêm ảnh duy nhất vào kết quả
filtered_files.extend(unique_images.values())
return filtered_files
def parse_formats(format_string):
return [fmt.strip().lower() for fmt in format_string.split(',') if fmt.strip()]
def filter_image_formats(filepaths, include_formats):
filtered_files = []
formats = parse_formats(format_filter_var.get())
if not formats:
return filepaths # No filtering if the format list is empty
for filepath in filepaths:
ext = os.path.splitext(filepath)[1][1:].lower() # Get the file extension
if (ext in formats) == include_formats:
filtered_files.append(filepath)
return filtered_files
def filter_image_size(filepaths, min_size, max_size):
filtered_files = []
for filepath in filepaths:
size = os.path.getsize(filepath)
if (min_size <= 0 or size >= min_size) and (max_size <= 0 or size <= max_size):
filtered_files.append(filepath)
return filtered_files
def filter_image_resolution(filepaths, min_total_resolution, max_total_resolution):
filtered_files = []
for filepath in filepaths:
try:
image = Image.open(filepath)
width, height = image.size
total_resolution = width + height
if (min_total_resolution <= 0 or total_resolution >= min_total_resolution) and \
(max_total_resolution <= 0 or total_resolution <= max_total_resolution):
filtered_files.append(filepath)
except Exception as e:
error_messages.append(f"Error reading image {filepath}: {e}")
update_error_count()
continue
return filtered_files
def save_file_with_unique_name(filepath, save_directory, saved_files):
"""Save file with a unique name to avoid overwriting."""
if filepath in saved_files:
return # File already saved, do not save again
base_name, ext = os.path.splitext(os.path.basename(filepath))
save_path = os.path.join(save_directory, f"{base_name}{ext}")
counter = 1
while os.path.exists(save_path):
save_path = os.path.join(save_directory, f"{base_name} ({counter}){ext}")
counter += 1
try:
shutil.copy(filepath, save_path)
saved_files.add(filepath) # Mark this file as saved
except Exception as e:
error_messages.append(f"Error saving file {filepath}: {e}")
update_error_count()
def delete_original_images():
"""Delete the original images if delete_originals_var is set."""
if delete_originals_var.get():
# Iterate through a copy of selected_files to avoid modifying the list during iteration
for filepath in selected_files[:]:
try:
os.remove(filepath)
selected_files.remove(filepath) # Remove from selected_files if deleted
except FileNotFoundError:
error_messages.append(f"File not found for deletion: {filepath}")
update_error_count()
except Exception as e:
error_messages.append(f"Error deleting file {filepath}: {e}")
update_error_count()
update_selected_files_label()
def update_selected_files_label():
"""Update the label showing the number of selected files."""
num_files_var.set(f"{len(selected_files)} files selected.")
def update_error_count():
"""Update the error count displayed in the Errors button."""
errors_var.set(f"Errors: {len(error_messages)}")
def check_all_files_filtered(filtered_files, filter_type):
"""Check if all files have been filtered out and display a specific error message."""
if not filtered_files:
error_message = f"All images would be filtered out by the selected {filter_type} filter. Please adjust the filter settings."
messagebox.showerror("Filtering Error", error_message)
return True
return False
def filter_images_preview(filepaths):
"""
Preview the number of images left after applying the filters.
Return the count of images left after filtering.
"""
filtered_files = filepaths[:]
# Preview filtering by image format
include_formats = format_mode_var.get() == "include"
filtered_files = filter_image_formats(filtered_files, include_formats)
# Preview filtering by image size
filtered_files = filter_image_size(filtered_files, min_size_var.get(), max_size_var.get())
# Preview filtering by total resolution
filtered_files = filter_image_resolution(filtered_files, min_total_resolution_var.get(), max_total_resolution_var.get())
# Preview filtering duplicates if selected
if filter_duplicate_var.get():
filtered_files = filter_duplicate_images(filtered_files)
return len(filtered_files)
def filter_images(save_directory):
global saved_files
saved_files = set() # Initialize saved_files set
num_initial_files = len(selected_files)
# Initialize progress tracking
if num_initial_files == 0:
return [], 0, 0, 0
try:
filtered_files = selected_files[:]
steps = 4 # Số bước lọc (format, size, resolution, duplicates)
step_progress = 100 // steps
progress_step = 0
# Filter by image format
include_formats = format_mode_var.get() == "include"
filtered_files = filter_image_formats(filtered_files, include_formats)
progress_step += step_progress
progress.set(progress_step)
root.update_idletasks()
if check_all_files_filtered(filtered_files, "format"):
return [], num_initial_files, 0, 0
# Filter by image size
filtered_files = filter_image_size(filtered_files, min_size_var.get(), max_size_var.get())
progress_step += step_progress
progress.set(progress_step)
root.update_idletasks()
if check_all_files_filtered(filtered_files, "size"):
return [], num_initial_files, 0, 0
# Filter by total resolution
filtered_files = filter_image_resolution(filtered_files, min_total_resolution_var.get(), max_total_resolution_var.get())
progress_step += step_progress
progress.set(progress_step)
root.update_idletasks()
if check_all_files_filtered(filtered_files, "resolution"):
return [], num_initial_files, 0, 0
# Filter duplicates if selected
if filter_duplicate_var.get():
filtered_files = filter_duplicate_images(filtered_files)
progress_step += step_progress
progress.set(progress_step)
root.update_idletasks()
if check_all_files_filtered(filtered_files, "duplicate"):
return [], num_initial_files, 0, 0
# Calculate the number of filtered out images
num_filtered_files = len(filtered_files)
num_filtered_out_files = num_initial_files - num_filtered_files
if not os.path.exists(save_directory):
os.makedirs(save_directory)
return filtered_files, num_initial_files, num_filtered_files, num_filtered_out_files
except Exception as e:
error_messages.append(str(e))
update_error_count()
return [], num_initial_files, 0, 0
def worker(save_directory, num_threads, q):
try:
filtered_files, num_initial_files, num_filtered_files, num_filtered_out_files = filter_images(save_directory)
if not filtered_files: # Kiểm tra nếu không còn ảnh sau lọc
q.put(None)
return # Dừng nếu không còn ảnh
batch_size = 10 # Số lượng ảnh xử lý mỗi lần
total_batches = len(filtered_files) // batch_size + 1
for batch_index in range(total_batches):
if stop_event.is_set():
break
# Xử lý từng lô ảnh một
batch_files = filtered_files[batch_index * batch_size:(batch_index + 1) * batch_size]
for i, file in enumerate(batch_files):
if stop_event.is_set():
break
save_file_with_unique_name(file, save_directory, saved_files)
q.put((batch_index * batch_size + i + 1, num_initial_files)) # Thêm vào hàng đợi tiến trình
q.put(None) # Đánh dấu hoàn thành
except Exception as e:
if not stop_event.is_set():
error_messages.append(str(e))
update_error_count()
q.put(str(e))
finally:
stop_event.clear() # Xóa event stop cho lần chạy tiếp theo
def update_progress():
try:
item = q.get_nowait()
if item is None:
# Đã hoàn thành
progress.set(100)
show_completion_message(len(selected_files), len(saved_files), len(selected_files) - len(saved_files))
delete_original_images() # Delete original images after completion
# Re-enable all buttons after completion
filter_button.config(state='normal')
select_directory_button.config(state='normal')
choose_dir_button.config(state='normal')
delete_originals_checkbox.config(state='normal')
elif isinstance(item, tuple):
completed, num_initial_files = item
progress.set(int((completed / num_initial_files) * 100))
elif isinstance(item, str) and "Error" in item:
error_messages.append(item)
update_error_count()
except queue.Empty:
pass
finally:
# Kiểm tra hàng đợi mỗi 100ms
root.after(100, update_progress)
def show_completion_message(num_initial_files, num_filtered_files, num_filtered_out_files):
message = (
f"Filtering complete.\n"
f"Total files selected: {num_initial_files}\n"
f"Files processed and saved: {num_filtered_files}\n"
f"Files filtered out: {num_filtered_out_files}\n"
f"{len(error_messages)} errors occurred."
)
messagebox.showinfo("Filtering Complete", message)
def filter_files():
global error_messages, error_window, worker_thread
stop_event.clear() # Clear the stop event before starting a new task
error_messages.clear()
update_error_count()
save_directory = save_dir_var.get()
try:
num_threads = int(thread_count_var.get() or 4)
if num_threads <= 0:
raise ValueError("Number of threads must be greater than 0.")
except ValueError as e:
messagebox.showerror("Input Error", f"Invalid number of threads: {e}")
return
if not selected_files or not save_directory:
status_var.set("Please select images and save location.")
return
# Preview filtered results
remaining_images = filter_images_preview(selected_files)
if remaining_images == 0:
messagebox.showerror("Filtering Error", "No images will remain after applying the filters. Please adjust the filter settings.")
return
# Disable all buttons except Stop button
filter_button.config(state='disabled')
select_directory_button.config(state='disabled')
choose_dir_button.config(state='disabled')
delete_originals_checkbox.config(state='disabled')
worker_thread = threading.Thread(target=worker, args=(save_directory, num_threads, q))
worker_thread.start()
threading.Thread(target=update_progress).start()
def stop_filtering_func():
stop_event.set() # Signal the worker thread to stop
status_var.set("Filtering stopped.")
# Do not disable the Stop button to keep it always enabled
# Re-enable all buttons
filter_button.config(state='normal')
select_directory_button.config(state='normal')
choose_dir_button.config(state='normal')
delete_originals_checkbox.config(state='normal')
if worker_thread is not None:
worker_thread.join() # Wait for worker thread to finish
def return_to_menu():
stop_filtering_func()
root.destroy()
# Import main menu and open it
from main import open_main_menu
open_main_menu()
def on_closing():
stop_filtering_func()
return_to_menu()
def show_errors():
global error_window
if error_window is not None:
return
error_window = tk.Toplevel(root)
error_window.title("Error Details")
error_window.geometry("500x400")
error_text = tk.Text(error_window, wrap='word')
error_text.pack(expand=True, fill='both')
if error_messages:
for error in error_messages:
error_text.insert('end', error + '\n')
else:
error_text.insert('end', "No errors recorded.")
error_text.config(state='disabled')
def on_close_error_window():
global error_window
error_window.destroy()
error_window = None
error_window.protocol("WM_DELETE_WINDOW", on_close_error_window)
def toggle_format_mode():
if format_mode_var.get() == "include":
format_filter_label.config(text="Include Image Formats (comma-separated, e.g., png,jpg):")
else:
format_filter_label.config(text="Exclude Image Formats (comma-separated, e.g., png,jpg):")
def validate_number(P):
if P.isdigit() or P == "":
return True
else:
messagebox.showerror("Input Error", "Please enter only numbers.")
return False
validate_command = root.register(validate_number)
# Create UI elements
back_button = tk.Button(root, text="<-", font=('Helvetica', 14), command=return_to_menu)
back_button.pack(anchor='nw', padx=10, pady=10)
title_label = tk.Label(root, text="Image Filter", font=('Helvetica', 16))
title_label.pack(pady=10)
select_directory_button = tk.Button(root, text="Select Images", command=select_directory)
select_directory_button.pack(pady=5)
num_files_label = tk.Label(root, textvariable=num_files_var)
num_files_label.pack(pady=5)
choose_dir_button = tk.Button(root, text="Choose Save Directory", command=choose_directory)
choose_dir_button.pack(pady=5)
save_dir_entry = tk.Entry(root, textvariable=save_dir_var, state='readonly', justify='center')
save_dir_entry.pack(pady=5, fill=tk.X)
# Checkbox to delete original images
delete_originals_checkbox = tk.Checkbutton(root, text="Delete Original Images After Filtering", variable=delete_originals_var)
delete_originals_checkbox.pack(pady=5)
# Toggle image format filter mode
format_mode_frame = tk.Frame(root)
format_mode_frame.pack(pady=5)
format_mode_label = tk.Label(format_mode_frame, text="Toggle Format Mode (Include/Exclude):")
format_mode_label.pack(side="left")
# Radio buttons
include_radio = tk.Radiobutton(format_mode_frame, text="Include Formats", variable=format_mode_var, value="include", command=toggle_format_mode)
include_radio.pack(side="left", padx=5)
exclude_radio = tk.Radiobutton(format_mode_frame, text="Exclude Formats", variable=format_mode_var, value="exclude", command=toggle_format_mode)
exclude_radio.pack(side="left")
# Description for image format filter mode
format_filter_label = tk.Label(root, text="Exclude Image Formats (comma-separated, e.g., png,jpg):")
format_filter_label.pack(pady=5)
format_filter_entry = tk.Entry(root, textvariable=format_filter_var, justify='center')
format_filter_entry.pack(pady=5, fill=tk.X)
min_size_label = tk.Label(root, text="Min Size (bytes):")
min_size_label.pack(pady=5)
min_size_entry = tk.Entry(root, textvariable=min_size_var, validate="key", validatecommand=(validate_command, '%P'), justify='center', width=8)
min_size_entry.pack(pady=5)
max_size_label = tk.Label(root, text="Max Size (bytes):")
max_size_label.pack(pady=5)
max_size_entry = tk.Entry(root, textvariable=max_size_var, validate="key", validatecommand=(validate_command, '%P'), justify='center', width=8)
max_size_entry.pack(pady=5)
min_resolution_label = tk.Label(root, text="Min Total Resolution (sum of width and height):")
min_resolution_label.pack(pady=5)
min_resolution_entry = tk.Entry(root, textvariable=min_total_resolution_var, validate="key", validatecommand=(validate_command, '%P'), justify='center', width=8)
min_resolution_entry.pack(pady=5)
max_resolution_label = tk.Label(root, text="Max Total Resolution (sum of width and height):")
max_resolution_label.pack(pady=5)
max_resolution_entry = tk.Entry(root, textvariable=max_total_resolution_var, validate="key", validatecommand=(validate_command, '%P'), justify='center', width=8)
max_resolution_entry.pack(pady=5)
# Add label and entry for thread count
thread_count_label = tk.Label(root, text="Number of Threads:")
thread_count_label.pack(pady=5)
thread_count_entry = tk.Entry(root, textvariable=thread_count_var, validate="key", validatecommand=(validate_command, '%P'), justify='center', width=4)
thread_count_entry.pack(pady=5)
filter_duplicate_checkbox = tk.Checkbutton(root, text="Filter Duplicate Images", variable=filter_duplicate_var)
filter_duplicate_checkbox.pack(pady=5)
filter_button = tk.Button(root, text="Filter", command=filter_files)
filter_button.pack(pady=10)
stop_button = tk.Button(root, text="Stop", command=stop_filtering_func) # Ensure stop button is a global variable
stop_button.pack(pady=5)
errors_button = tk.Button(root, textvariable=errors_var, command=show_errors)
errors_button.pack(pady=5)
progress_bar = ttk.Progressbar(root, variable=progress, maximum=100)
progress_bar.pack(pady=5, fill=tk.X)
status_label = tk.Label(root, textvariable=status_var, fg="green")
status_label.pack(pady=5)
center_window(root)
root.protocol("WM_DELETE_WINDOW", on_closing)
root.mainloop()
if __name__ == "__main__":
open_image_filter()
|