From 4d7012ecdacd99e150f8c1e147b672f85e8e7e0b Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Fri, 26 Dec 2025 02:23:51 +0200 Subject: [PATCH] . --- comfy_extras/nodes_seedvr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_seedvr.py b/comfy_extras/nodes_seedvr.py index bd0c6037a..22b117872 100644 --- a/comfy_extras/nodes_seedvr.py +++ b/comfy_extras/nodes_seedvr.py @@ -298,7 +298,7 @@ class SeedVR2InputProcessing(io.ComfyNode): b, t, c, h, w = images.shape images = images.reshape(b * t, c, h, w) - max_area = ((resolution_height * resolution_width)** 0.5) ** 2 + #max_area = ((resolution_height * resolution_width)** 0.5) ** 2 clip = Lambda(lambda x: torch.clamp(x, 0.0, 1.0)) normalize = Normalize(0.5, 0.5) #images = area_resize(images, max_area)