File size: 34,115 Bytes
a3fda21 |
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 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 |
import tkinter as tk
from tkinter import filedialog, messagebox, ttk
from PIL import Image as PILImage, ImageTk
import os
import queue
import threading
import torch
from transformers import AutoModelForCausalLM, LlamaTokenizer
import json
import traceback
import math
torch.set_grad_enabled(False)
stop_processing = False
error_messages = []
selected_files = []
save_directory = ""
caption_window = None
caption_frame = None
thumbnails = []
caption_text_widgets = []
error_window = None
status_var = None
num_files_var = None
errors_var = None
progress = None
prompt_var = None
max_new_tokens_var = None
do_sample_var = None
temperature_var = None
top_k_var = None
top_p_var = None
thread_count_var = None
precision_var = None
batch_size_var = None
prepend_text_var = None
append_text_var = None
caption_handling_var = None # Variable to handle radio buttons for caption handling
start_button = None
stop_button = None
model = None
prompt_entry = None
select_files_button = None
show_captions_button = None
thread_count_entry = None
precision_entry = None
batch_size_entry = None
prepend_text_entry = None
append_text_entry = None
root = None
q = queue.Queue()
current_page = 0
images_per_page = 20
total_pages = 1
content_canvas = None
search_var = None
original_selected_files = []
action_var = None
action_entry = None
def load_model():
global model, tokenizer
if model is None:
tokenizer = LlamaTokenizer.from_pretrained('lmsys/vicuna-7b-v1.5')
dtype = torch.float16 if precision_var.get() <= 1 else torch.float32
model = AutoModelForCausalLM.from_pretrained(
'THUDM/cogvlm-chat-hf',
torch_dtype=dtype,
low_cpu_mem_usage=True,
trust_remote_code=True,
).to('cuda').eval()
def update_and_save_config():
top_p_value = top_p_var.get() if do_sample_var.get() else None
config_entry = {
'prompt': prompt_var.get(),
'max_new_tokens': max_new_tokens_var.get(),
'temperature': temperature_var.get(),
'top_k': top_k_var.get(),
'top_p': float(top_p_value) if top_p_value is not None else None,
'precision': precision_var.get(),
'thread_count': thread_count_var.get(),
'batch_size': batch_size_var.get(),
'prepend_text': prepend_text_var.get(),
'append_text': append_text_var.get(),
'caption_handling': caption_handling_var.get() # Save the selected caption handling option
}
try:
with open('captions.json', 'w') as f:
json.dump(config_entry, f, indent=2)
except Exception as e:
print(f"Error saving config to captions.json: {e}")
def load_config_from_json():
global prompt_entry
try:
if os.path.exists('captions.json'):
with open('captions.json', 'r') as f:
config_entry = json.load(f)
prompt_var.set(config_entry.get('prompt', ''))
max_new_tokens_var.set(config_entry.get('max_new_tokens', 200))
temperature_var.set(config_entry.get('temperature', 1.0))
top_k_var.set(config_entry.get('top_k', 50))
top_p_value = config_entry.get('top_p', 0.95)
top_p_var.set(top_p_value if top_p_value is not None else 0.95)
precision_var.set(config_entry.get('precision', 1))
thread_count_var.set(config_entry.get('thread_count', 4))
batch_size_var.set(config_entry.get('batch_size', 1))
prepend_text_var.set(config_entry.get('prepend_text', ''))
append_text_var.set(config_entry.get('append_text', ''))
caption_handling_var.set(config_entry.get('caption_handling', 'skip')) # Load the saved caption handling option
prompt_entry.delete("1.0", tk.END)
prompt_entry.insert(tk.END, config_entry.get('prompt', ''))
except Exception as e:
print(f"Error loading config from captions.json: {e}")
def on_config_change(*args):
root.after(100, update_config)
def update_config():
try:
precision_value = precision_var.get()
if precision_value == "":
return # Không làm gì nếu giá trị là chuỗi rỗng
update_and_save_config()
except Exception as e:
print(f"Lỗi khi xử lý giá trị: {e}")
def on_prompt_change(event=None):
prompt_var.set(prompt_entry.get("1.0", tk.END).strip())
update_and_save_config()
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 validate_numeric_input(value):
if value == "" or value == "-":
return True
try:
float(value)
return True
except ValueError:
return False
def center_window(window):
window.update_idletasks()
width = window.winfo_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 toggle_sampling_options():
if do_sample_var.get():
temperature_label.pack(pady=5, after=do_sample_check)
temperature_entry.pack(pady=5, after=temperature_label)
top_k_label.pack(pady=5, after=temperature_entry)
top_k_entry.pack(pady=5, after=top_k_label)
top_p_label.pack(pady=5, after=top_k_entry)
top_p_entry.pack(pady=5, after=top_p_label)
root.geometry(f"{root.winfo_width()}x{root.winfo_height() + 150}")
else:
temperature_label.pack_forget()
temperature_entry.pack_forget()
top_k_label.pack_forget()
top_k_entry.pack_forget()
top_p_label.pack_forget()
top_p_entry.pack_forget()
root.geometry(f"{root.winfo_width()}x{root.winfo_height() - 150}")
center_window(root)
def open_image_to_caption():
global stop_processing, error_messages, selected_files, save_directory, status_var, num_files_var, errors_var, progress
global prompt_var, max_new_tokens_var, do_sample_var, temperature_var, top_k_var, top_p_var, thread_count_var, precision_var, batch_size_var
global prepend_text_var, append_text_var, search_var, action_var, caption_handling_var # Updated caption handling variable
global start_button, stop_button
global temperature_label, temperature_entry, top_k_label, top_k_entry, top_p_label, top_p_entry
global do_sample_check, prompt_entry, select_files_button, show_captions_button, thread_count_entry, precision_entry, batch_size_entry
global prepend_text_entry, append_text_entry
global root
global q
root = tk.Tk()
root.title("Image to Caption")
root.geometry("1050x950")
# Khởi tạo các biến Tkinter sau khi root đã được tạo
status_var = tk.StringVar()
num_files_var = tk.StringVar()
errors_var = tk.StringVar(value="Errors: 0")
progress = tk.IntVar()
prompt_var = tk.StringVar(value="Describe this image")
max_new_tokens_var = tk.IntVar(value=200)
do_sample_var = tk.BooleanVar(value=False)
temperature_var = tk.DoubleVar(value=1.0)
top_k_var = tk.IntVar(value=50)
top_p_var = tk.DoubleVar(value=0.95)
thread_count_var = tk.IntVar(value=4)
precision_var = tk.IntVar(value=1)
batch_size_var = tk.IntVar(value=1)
prepend_text_var = tk.StringVar()
append_text_var = tk.StringVar()
caption_handling_var = tk.StringVar(value='skip') # Default value is 'skip'
search_var = tk.StringVar() # Biến search_var khởi tạo ở đây
action_var = tk.StringVar() # Biến action_var khởi tạo ở đây
q = queue.Queue()
validate_cmd = root.register(validate_numeric_input)
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 Caption Generator", font=('Helvetica', 16))
title_label.pack(pady=10)
warning_label = tk.Label(root, text="NOTE: To run CogVLM with the minimum configuration, you need at least 40GB RAM to load the model in FP16 with batch size 1 and a GPU with at least 24GB of VRAM. It is recommended to install ImageDucHaiten on an NVMe SSD to optimize speed.",
font=('Helvetica', 10), fg="red", wraplength=750, justify="left")
warning_label.pack(pady=10)
select_files_button = tk.Button(root, text="Select Files", command=select_files)
select_files_button.pack(pady=10)
show_captions_button = tk.Button(root, text="Show Captions", command=open_caption_window)
show_captions_button.pack(pady=10)
num_files_label = tk.Label(root, textvariable=num_files_var)
num_files_label.pack(pady=5)
prompt_label = tk.Label(root, text="Prompt (text to describe the image):")
prompt_label.pack(pady=5)
prompt_entry = tk.Text(root, height=3, wrap='word', width=60)
prompt_entry.pack(pady=5, padx=10, fill='both', expand=True)
prompt_entry.bind('<KeyRelease>', on_prompt_change)
prepend_text_label = tk.Label(root, text="Prepend Text:")
prepend_text_label.pack(pady=5)
prepend_text_entry = tk.Entry(root, textvariable=prepend_text_var, justify='center', width=60)
prepend_text_entry.pack(pady=5)
append_text_label = tk.Label(root, text="Append Text:")
append_text_label.pack(pady=5)
append_text_entry = tk.Entry(root, textvariable=append_text_var, justify='center', width=60)
append_text_entry.pack(pady=5)
# Thêm các radio button để xử lý caption khi ảnh đã có caption
caption_handling_label = tk.Label(root, text="If a caption already exists for an image:", font=('Helvetica', 12))
caption_handling_label.pack(pady=5)
# Frame chứa các radio button
options_frame = tk.Frame(root)
options_frame.pack(pady=5)
# Radio buttons
overwrite_radio = tk.Radiobutton(options_frame, text="Overwrite existing caption", variable=caption_handling_var, value='overwrite')
overwrite_radio.pack(side="left", padx=10)
append_radio = tk.Radiobutton(options_frame, text="Append to existing caption", variable=caption_handling_var, value='append')
append_radio.pack(side="left", padx=10)
skip_radio = tk.Radiobutton(options_frame, text="Skip images with existing caption", variable=caption_handling_var, value='skip')
skip_radio.pack(side="left", padx=10)
load_config_from_json()
prompt_var.trace('w', on_config_change)
max_new_tokens_var.trace('w', on_config_change)
temperature_var.trace('w', on_config_change)
top_k_var.trace('w', on_config_change)
top_p_var.trace('w', on_config_change)
precision_var.trace('w', on_config_change)
thread_count_var.trace('w', on_config_change)
batch_size_var.trace('w', on_config_change)
prepend_text_var.trace('w', on_config_change)
append_text_var.trace('w', on_config_change)
caption_handling_var.trace('w', on_config_change) # Trace for the caption handling radio buttons
max_new_tokens_label = tk.Label(root, text="Max New Tokens (max number of tokens to generate):")
max_new_tokens_label.pack(pady=5)
max_new_tokens_entry = tk.Entry(root, textvariable=max_new_tokens_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
max_new_tokens_entry.pack(pady=5)
do_sample_check = tk.Checkbutton(root, text="Do Sample (random sampling):", variable=do_sample_var, command=toggle_sampling_options)
do_sample_check.pack(pady=5)
temperature_label = tk.Label(root, text="Temperature (control randomness of sampling):")
top_k_label = tk.Label(root, text="Top-k (consider top k tokens):")
top_p_label = tk.Label(root, text="Top-p (consider tokens with cumulative probability p):")
temperature_entry = tk.Entry(root, textvariable=temperature_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
top_k_entry = tk.Entry(root, textvariable=top_k_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
top_p_entry = tk.Entry(root, textvariable=top_p_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
# Frame to hold all three horizontally aligned elements
horizontal_frame = tk.Frame(root)
horizontal_frame.pack(pady=5, padx=5)
thread_count_label = tk.Label(horizontal_frame, text="Thread Count (number of threads to use):")
thread_count_label.pack(side=tk.LEFT, padx=5)
thread_count_entry = tk.Entry(horizontal_frame, textvariable=thread_count_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
thread_count_entry.pack(side=tk.LEFT, padx=5)
batch_size_label = tk.Label(horizontal_frame, text="Batch Size (number of images to process at once):")
batch_size_label.pack(side=tk.LEFT, padx=5)
batch_size_entry = tk.Entry(horizontal_frame, textvariable=batch_size_var, justify='center', width=5, validate='key', validatecommand=(validate_cmd, '%P'))
batch_size_entry.pack(side=tk.LEFT, padx=5)
errors_button = tk.Button(root, textvariable=errors_var, command=show_errors)
errors_button.pack(pady=10)
start_button = tk.Button(root, text="Generate Captions", command=lambda: [process_files(), update_and_save_config()])
start_button.pack(pady=10)
stop_button = tk.Button(root, text="Stop", command=stop_processing_func)
stop_button.pack(pady=10)
progress_bar = ttk.Progressbar(root, variable=progress, maximum=100)
progress_bar.pack(pady=10, 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()
def select_files():
global selected_files, save_directory, total_pages, original_selected_files
filetypes = [("All Image files", "*.jpg;*.jpeg;*.png;*.gif;*.bmp;*.tiff;*.tif;*.svg;*.webp")]
filepaths = filedialog.askopenfilenames(title="Select Image Files", filetypes=filetypes)
if filepaths:
selected_files.clear()
selected_files.extend(filepaths)
original_selected_files = selected_files.copy()
validate_selected_files()
num_files_var.set(f"{len(selected_files)} files selected.")
save_directory = os.path.dirname(selected_files[0])
total_pages = (len(selected_files) + images_per_page - 1) // images_per_page
if caption_window is not None:
update_image_preview(content_canvas)
def validate_selected_files():
global selected_files, num_files_var
selected_files = [file for file in selected_files if os.path.exists(file)]
num_files_var.set(f"{len(selected_files)} files selected.")
def toggle_buttons(state):
state = tk.NORMAL if state else tk.DISABLED
select_files_button.config(state=state)
show_captions_button.config(state=state)
prompt_entry.config(state=state)
prepend_text_entry.config(state=state)
append_text_entry.config(state=state)
do_sample_check.config(state=state)
temperature_entry.config(state=state)
top_k_entry.config(state=state)
top_p_entry.config(state=state)
thread_count_entry.config(state=state)
batch_size_entry.config(state=state)
start_button.config(state=state)
stop_button.config(state=tk.NORMAL)
def generate_caption(image_path, save_directory, q):
if stop_processing:
return
try:
load_model()
filename = os.path.basename(image_path)
caption_file_path = os.path.join(save_directory, f"{filename}_caption.txt")
# Kiểm tra các lựa chọn của người dùng
if os.path.exists(caption_file_path):
if caption_handling_var.get() == 'skip':
q.put(image_path)
return
elif caption_handling_var.get() == 'append':
with open(caption_file_path, 'r', encoding='utf-8') as f:
existing_caption = f.read()
else:
existing_caption = ""
else:
existing_caption = ""
image = PILImage.open(image_path).convert('RGB')
if not isinstance(image, PILImage.Image):
raise ValueError(f"Expected image to be of type PIL.Image.Image, but got {type(image)}")
inputs = model.build_conversation_input_ids(
tokenizer,
query=prompt_var.get(),
history=[],
images=[image]
)
inputs = {
'input_ids': inputs['input_ids'].unsqueeze(0).to('cuda'),
'token_type_ids': inputs['token_type_ids'].unsqueeze(0).to('cuda'),
'attention_mask': inputs['attention_mask'].unsqueeze(0).to('cuda'),
'images': [[inputs['images'][0].to('cuda').to(torch.float16)]],
}
gen_kwargs = {
"max_new_tokens": max_new_tokens_var.get(),
"do_sample": do_sample_var.get(),
"temperature": temperature_var.get(),
"top_k": top_k_var.get(),
"top_p": top_p_var.get() if do_sample_var.get() else None,
"num_beams": precision_var.get()
}
with torch.no_grad():
outputs = model.generate(**inputs, **gen_kwargs)
outputs = outputs[:, inputs['input_ids'].shape[1]:]
new_caption = tokenizer.decode(outputs[0], skip_special_tokens=True)
final_caption = f"{prepend_text_var.get()} {existing_caption} {new_caption} {append_text_var.get()}".strip()
with open(caption_file_path, 'w', encoding='utf-8') as file:
file.write(final_caption)
q.put(image_path)
torch.cuda.empty_cache()
except torch.cuda.OutOfMemoryError as e:
torch.cuda.empty_cache()
error_message = f"CUDA OutOfMemoryError: {traceback.format_exc()}"
print(error_message)
q.put(error_message)
error_messages.append(error_message)
except Exception as e:
error_message = f"Error processing image {image_path}: {traceback.format_exc()}"
print(error_message)
q.put(error_message)
error_messages.append(error_message)
def worker(save_directory, num_threads, batch_size):
try:
progress.set(0)
threads = []
num_batches = math.ceil(len(selected_files) / batch_size)
batch_size_per_thread = max(1, batch_size // num_threads) # Số ảnh mỗi luồng xử lý trong một batch
for batch_index in range(num_batches):
if stop_processing:
break
start_index = batch_index * batch_size
end_index = min(start_index + batch_size, len(selected_files))
batch = selected_files[start_index:end_index]
# Chia ảnh trong batch cho các luồng
for i in range(0, len(batch), batch_size_per_thread):
thread_batch = batch[i:i + batch_size_per_thread]
thread = threading.Thread(target=generate_captions_for_batch, args=(thread_batch, save_directory, q))
threads.append(thread)
thread.start()
# Đợi các luồng trong batch hiện tại hoàn thành
for thread in threads:
thread.join()
threads.clear()
q.put(None)
except Exception as e:
if not stop_processing:
q.put(e)
def generate_captions_for_batch(batch, save_directory, q):
for image_path in batch:
generate_caption(image_path, save_directory, q)
def update_progress():
try:
completed = 0
while True:
item = q.get()
if item is None:
break
if isinstance(item, str):
if "Error" in item:
root.after(0, errors_var.set, f"Errors: {len(error_messages)}")
continue
completed += 1
progress.set(int((completed / len(selected_files)) * 100))
if not stop_processing:
root.after(0, status_var.set, f"Processed {completed} files")
root.after(0, root.update_idletasks)
if not stop_processing:
root.after(0, progress.set(100))
show_completion_message(completed)
except Exception as e:
if not stop_processing:
root.after(0, status_var.set(f"Error: {e}"))
finally:
toggle_buttons(True)
def show_completion_message(completed):
message = f"Processing complete. {completed} files processed."
if error_messages:
message += f" {len(error_messages)} errors occurred."
messagebox.showinfo("Process Complete", message)
def process_files():
global stop_processing, error_messages
stop_processing = False
error_messages.clear()
errors_var.set("Errors: 0")
validate_selected_files()
if not selected_files or not save_directory:
status_var.set("Please select images.")
return
toggle_buttons(False)
threading.Thread(target=worker, args=(save_directory, thread_count_var.get(), batch_size_var.get())).start()
threading.Thread(target=update_progress).start()
def stop_processing_func():
global stop_processing
stop_processing = True
torch.cuda.empty_cache()
status_var.set("Processing stopped.")
def open_caption_window():
global caption_window, caption_frame, caption_text_widgets, current_page, total_pages, content_canvas
if caption_window is not None:
return
validate_selected_files()
caption_window = tk.Toplevel(root)
caption_window.title("Image Thumbnails and Captions")
caption_window.geometry("800x900")
main_frame = tk.Frame(caption_window)
main_frame.pack(fill=tk.BOTH, expand=True)
search_frame = tk.Frame(main_frame)
search_frame.pack(side=tk.TOP, fill=tk.X)
search_entry = tk.Entry(search_frame, textvariable=search_var)
search_entry.pack(side=tk.LEFT, padx=10, pady=5, fill=tk.X, expand=True)
search_button = tk.Button(search_frame, text="Search", command=search_captions)
search_button.pack(side=tk.LEFT, padx=10)
reset_button = tk.Button(search_frame, text="Reset Order", command=reset_order)
reset_button.pack(side=tk.LEFT, padx=10)
action_frame = tk.Frame(main_frame)
action_frame.pack(side=tk.TOP, fill=tk.X)
action_entry = tk.Entry(action_frame, textvariable=action_var)
action_entry.pack(side=tk.LEFT, padx=10, pady=5, fill=tk.X, expand=True)
prepend_button = tk.Button(action_frame, text="Add to Beginning", command=lambda: add_to_captions("prepend"))
prepend_button.pack(side=tk.LEFT, padx=5)
append_button = tk.Button(action_frame, text="Add to End", command=lambda: add_to_captions("append"))
append_button.pack(side=tk.LEFT, padx=5)
insert_middle_button = tk.Button(action_frame, text="Add to Middle", command=lambda: add_to_captions("insert_middle"))
insert_middle_button.pack(side=tk.LEFT, padx=5)
delete_keyword_button = tk.Button(action_frame, text="Delete Keyword", command=delete_keyword_from_captions)
delete_keyword_button.pack(side=tk.LEFT, padx=5)
delete_images_button = tk.Button(action_frame, text="Delete Images with Keyword", command=delete_images_with_keyword)
delete_images_button.pack(side=tk.LEFT, padx=5)
content_canvas = tk.Canvas(main_frame)
content_canvas.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
caption_frame = tk.Frame(content_canvas)
content_canvas.create_window((0, 0), window=caption_frame, anchor='nw')
caption_scrollbar = tk.Scrollbar(main_frame, orient="vertical", command=content_canvas.yview)
caption_scrollbar.pack(side=tk.LEFT, fill=tk.Y)
content_canvas.configure(yscrollcommand=caption_scrollbar.set)
caption_frame.bind("<Configure>", lambda e: content_canvas.configure(scrollregion=content_canvas.bbox("all")))
content_canvas.bind_all("<MouseWheel>", lambda event: content_canvas.yview_scroll(int(-1*(event.delta/120)), "units"))
def on_caption_window_close():
global caption_window
caption_window.destroy()
caption_window = None
caption_window.protocol("WM_DELETE_WINDOW", on_caption_window_close)
update_image_preview(content_canvas)
def update_image_preview(content_canvas):
global thumbnails, caption_text_widgets, current_page, images_per_page, total_pages
if caption_frame is None:
return
for widget in caption_frame.winfo_children():
if isinstance(widget, tk.Label) or isinstance(widget, tk.Text) or isinstance(widget, tk.Frame):
widget.destroy()
thumbnails.clear()
caption_text_widgets.clear()
if not selected_files:
return
start_index = current_page * images_per_page
end_index = start_index + images_per_page
files_to_display = selected_files[start_index:end_index]
for i, file_path in enumerate(files_to_display):
thumbnail_size = (200, 200)
try:
image = PILImage.open(file_path)
image.thumbnail(thumbnail_size)
thumbnail = ImageTk.PhotoImage(image)
thumbnails.append(thumbnail)
img_label = tk.Label(caption_frame, image=thumbnail)
img_label.grid(row=i*2, column=0, padx=5, pady=5, sticky="nsew")
file_label = tk.Label(caption_frame, text=os.path.basename(file_path), font=('Helvetica', 12))
file_label.grid(row=i*2, column=1, padx=5, pady=5, sticky="nsew")
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
if os.path.exists(caption_file):
with open(caption_file, 'r', encoding='utf-8') as file:
caption_text = file.read()
else:
caption_text = ""
caption_var = tk.StringVar(value=caption_text)
caption_text_widget = tk.Text(caption_frame, width=50, height=3, wrap=tk.WORD, font=('Helvetica', 12))
caption_text_widget.insert(tk.END, caption_text)
caption_text_widget.grid(row=i*2, column=2, padx=5, pady=5, sticky="nsew")
caption_var.trace_add("write", lambda *args, fp=file_path, cv=caption_var: save_caption(fp, cv.get()))
caption_text_widget.bind("<KeyRelease>", lambda e, cv=caption_var, w=caption_text_widget: cv.set(w.get("1.0", "end-1c")))
caption_text_widgets.append(caption_text_widget)
except Exception as e:
tk.Label(caption_frame, text="Error loading image").grid(row=i*2, column=0, columnspan=4, padx=5, pady=5)
nav_frame = tk.Frame(caption_frame)
nav_frame.grid(row=images_per_page*2, column=0, columnspan=3, pady=10)
if current_page > 0:
prev_button = tk.Button(nav_frame, text="Previous", command=lambda: navigate(-1, content_canvas))
prev_button.pack(side=tk.LEFT)
page_label = tk.Label(nav_frame, text=f"Page {current_page + 1} of {total_pages}")
page_label.pack(side=tk.LEFT, padx=5)
page_entry = tk.Entry(nav_frame, width=5)
page_entry.pack(side=tk.LEFT)
go_button = tk.Button(nav_frame, text="Go", command=lambda: go_to_page(page_entry.get(), content_canvas))
go_button.pack(side=tk.LEFT, padx=5)
if current_page < total_pages - 1:
next_button = tk.Button(nav_frame, text="Next", command=lambda: navigate(1, content_canvas))
next_button.pack(side=tk.RIGHT)
def navigate(direction, content_canvas):
global current_page
current_page += direction
update_image_preview(content_canvas)
def go_to_page(page_number, content_canvas):
global current_page, total_pages
try:
page_number = int(page_number)
if 1 <= page_number <= total_pages:
current_page = page_number - 1
update_image_preview(content_canvas)
else:
messagebox.showerror("Invalid Page", f"Please enter a valid page number between 1 and {total_pages}.")
except ValueError:
messagebox.showerror("Invalid Input", "Please enter a valid integer for the page number.")
def save_caption(file_path, caption_text):
output_path = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
try:
with open(output_path, 'w', encoding='utf-8') as file:
file.write(caption_text.strip())
except Exception as e:
print(f"Error saving captions: {e}")
def search_captions():
global selected_files
search_term = search_var.get().lower().strip()
if not search_term:
return
try:
selected_files.sort(key=lambda x: search_score(x, search_term), reverse=True)
except Exception as e:
error_message = f"Error during sorting: {e}"
print(error_message)
error_messages.append(error_message)
update_image_preview(content_canvas)
def search_score(file_path, search_term):
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
try:
if os.path.exists(caption_file):
with open(caption_file, 'r', encoding='utf-8') as file:
caption_text = file.read().lower()
if search_term in caption_text:
return caption_text.count(search_term)
except Exception as e:
error_message = f"Error reading file {caption_file}: {e}"
print(error_message)
error_messages.append(error_message)
return 0
def reset_order():
global selected_files
selected_files = original_selected_files.copy()
update_image_preview(content_canvas)
def add_to_captions(position):
global selected_files
keyword = action_var.get()
if not keyword:
return
for file_path in selected_files:
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
if os.path.exists(caption_file):
with open(caption_file, 'r+', encoding='utf-8') as file:
caption_text = file.read()
if position == "prepend":
caption_text = f"{keyword} {caption_text}"
elif position == "append":
caption_text = f"{caption_text} {keyword}"
elif position == "insert_middle":
middle_index = len(caption_text) // 2
caption_text = f"{caption_text[:middle_index]} {keyword} {caption_text[middle_index:]}"
file.seek(0)
file.write(caption_text)
file.truncate()
update_image_preview(content_canvas)
def delete_keyword_from_captions():
keyword = action_var.get().lower().strip()
if not keyword:
return
for file_path in selected_files:
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
if os.path.exists(caption_file):
with open(caption_file, 'r+', encoding='utf-8') as file:
caption_text = file.read().lower().replace(keyword, "")
updated_caption = caption_text.replace(keyword, "").strip()
file.seek(0)
file.write(updated_caption)
file.truncate()
update_image_preview(content_canvas)
def delete_images_with_keyword():
global selected_files
keyword = action_var.get().lower()
if not keyword:
return
files_to_delete = []
for file_path in selected_files:
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
if os.path.exists(caption_file):
with open(caption_file, 'r', encoding='utf-8') as file:
caption_text = file.read().lower()
if keyword in caption_text:
files_to_delete.append(file_path)
for file_path in files_to_delete:
try:
os.remove(file_path)
caption_file = os.path.join(save_directory, f"{os.path.basename(file_path)}_caption.txt")
if os.path.exists(caption_file):
os.remove(caption_file)
except Exception as e:
error_message = f"Error deleting file {file_path} or its caption: {e}"
print(error_message)
error_messages.append(error_message)
selected_files = [file_path for file_path in selected_files if file_path not in files_to_delete]
validate_selected_files()
update_image_preview(content_canvas)
def return_to_menu():
stop_processing_func()
root.destroy()
import main
main.open_main_menu()
def on_closing():
return_to_menu()
if __name__ == "__main__":
open_image_to_caption()
|