From 5d8ce725456400499b43e58a366eedcda56d411b Mon Sep 17 00:00:00 2001 From: GeorgLegato Date: Sat, 6 May 2023 14:50:25 +0200 Subject: [PATCH] print --- iz_helpers/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iz_helpers/run.py b/iz_helpers/run.py index b7c83dd..d11b82a 100644 --- a/iz_helpers/run.py +++ b/iz_helpers/run.py @@ -412,7 +412,7 @@ def create_zoom_single( if (upscale_do): for idx,mf in enumerate(main_frames): - print (f"InfZoom: Upscaling mainframe: {idx} \r") + print (f"\033[KInfZoom: Upscaling mainframe: {idx} \r") main_frames[idx]=do_upscaleImg(mf, upscale_do, upscaler_name, upscale_by) width = main_frames[0].width @@ -444,7 +444,7 @@ def interpolateFrames(out_config, width, height, mask_width, mask_height, num_in # interpolation steps between 2 inpainted images (=sequential zoom and crop) for j in range(num_interpol_frames - 1): - print (f"InfZoom: Interpolate frame: main/inter: {i}/{j} \r") + print (f"\033[KInfZoom: Interpolate frame: main/inter: {i}/{j} \r") #todo: howto zoomIn when writing each frame; main_frames are inverted, howto interpolate? if zoomIn: current_image = main_frames[i + 1]