overmask_scale_mainframes
GeorgLegato 2023-05-06 14:50:25 +02:00
parent 334febb666
commit 5d8ce72545
1 changed files with 2 additions and 2 deletions

View File

@ -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]