From 2506c5a261176101ab57aa4d544dc53d8e0dee43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nimish=20G=C3=A5tam?= Date: Sat, 1 Feb 2025 11:52:49 +0100 Subject: [PATCH 1/2] Update ui.py Some checks for first run when models are missing, so it doesn't error out with inv_scale_x > 0 in cv2 --- modules/ui.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/ui.py b/modules/ui.py index 8eb9289..5e5dff6 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -696,7 +696,7 @@ def check_and_ignore_nsfw(target, destroy: Callable = None) -> bool: def fit_image_to_size(image, width: int, height: int): - if width is None and height is None: + if width is None or height is None or width <= 0 or height <= 0: return image h, w, _ = image.shape ratio_h = 0.0 @@ -707,6 +707,16 @@ def fit_image_to_size(image, width: int, height: int): ratio_w = width / w ratio = max(ratio_w, ratio_h) new_size = (int(ratio * w), int(ratio * h)) + ratio_w = width / w + ratio_h = height / h + # Use the smaller ratio to ensure the image fits within the given dimensions + ratio = min(ratio_w, ratio_h) + + # Compute new dimensions, ensuring they're at least 1 pixel + new_width = max(1, int(ratio * w)) + new_height = max(1, int(ratio * h)) + new_size = (new_width, new_height) + return cv2.resize(image, dsize=new_size) @@ -1199,4 +1209,4 @@ def update_webcam_target( target_label_dict_live[button_num] = target_image else: update_pop_live_status("Face could not be detected in last upload!") - return map \ No newline at end of file + return map From ccc04983cfd96f9cdf6b85e455783f77b34b399c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nimish=20G=C3=A5tam?= Date: Sat, 1 Feb 2025 12:38:37 +0100 Subject: [PATCH 2/2] Update ui.py removed unnecessary code as per AI code review (which is a thing now because of course it is) --- modules/ui.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/ui.py b/modules/ui.py index 5e5dff6..1d7c2be 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -701,12 +701,6 @@ def fit_image_to_size(image, width: int, height: int): h, w, _ = image.shape ratio_h = 0.0 ratio_w = 0.0 - if width > height: - ratio_h = height / h - else: - ratio_w = width / w - ratio = max(ratio_w, ratio_h) - new_size = (int(ratio * w), int(ratio * h)) ratio_w = width / w ratio_h = height / h # Use the smaller ratio to ensure the image fits within the given dimensions