From bee351960d8513e71013b5ec88ab364f43952277 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sat, 11 May 2024 02:46:45 +0300 Subject: [PATCH] Update curve_nodes.py --- nodes/curve_nodes.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/nodes/curve_nodes.py b/nodes/curve_nodes.py index 5f77446..60c5992 100644 --- a/nodes/curve_nodes.py +++ b/nodes/curve_nodes.py @@ -494,9 +494,6 @@ Calculates list of floats from image. w_values = w_sampled.mean(dim=0).tolist() h_values = h_sampled.mean(dim=1).tolist() - print("Sampled width axis values:", w_values) - print("Sampled height axis values:", h_values) - return (w_values, h_values) class MaskOrImageToWeight: