File size: 404 Bytes
c6535db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | class Options:
img2img_background_color = "#ffffff" # Set to white for now
class State:
interrupted = False
def begin(self):
pass
def end(self):
pass
opts = Options()
state = State()
# Will only ever hold 1 upscaler
sd_upscalers = [None]
# The upscaler usable by ComfyUI nodes
actual_upscaler = None
# Batch of images to upscale
batch = []
batch_as_tensor = None
|