feature: remove tiling message for upscaler

This commit is contained in:
Bryce 2023-02-28 20:53:53 -08:00 committed by Bryce Drennan
parent 40da2b0357
commit a449fbd5e2

View File

@ -164,7 +164,6 @@ class RealESRGANer:
# input tile dimensions
input_tile_width = input_end_x - input_start_x
input_tile_height = input_end_y - input_start_y
tile_idx = y * tiles_x + x + 1
input_tile = self.img[
:,
:,
@ -178,7 +177,6 @@ class RealESRGANer:
output_tile = self.model(input_tile)
except RuntimeError as error:
print("Error", error)
print(f"\tTile {tile_idx}/{tiles_x * tiles_y}")
# output tile area on total image
output_start_x = input_start_x * self.scale