mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Merge pull request #5179 from kaneda2004/master
Update SD Upscaler to include user selectable Scale Factor
This commit is contained in:
commit
854bb0b56c
@ -17,13 +17,14 @@ class Script(scripts.Script):
|
|||||||
return is_img2img
|
return is_img2img
|
||||||
|
|
||||||
def ui(self, is_img2img):
|
def ui(self, is_img2img):
|
||||||
info = gr.HTML("<p style=\"margin-bottom:0.75em\">Will upscale the image to twice the dimensions; use width and height sliders to set tile size</p>")
|
info = gr.HTML("<p style=\"margin-bottom:0.75em\">Will upscale the image by the selected scale factor; use width and height sliders to set tile size</p>")
|
||||||
overlap = gr.Slider(minimum=0, maximum=256, step=16, label='Tile overlap', value=64)
|
overlap = gr.Slider(minimum=0, maximum=256, step=16, label='Tile overlap', value=64)
|
||||||
|
scale_factor = gr.Slider(minimum=1, maximum=4, step=1, label='Scale Factor', value=2)
|
||||||
upscaler_index = gr.Radio(label='Upscaler', choices=[x.name for x in shared.sd_upscalers], value=shared.sd_upscalers[0].name, type="index")
|
upscaler_index = gr.Radio(label='Upscaler', choices=[x.name for x in shared.sd_upscalers], value=shared.sd_upscalers[0].name, type="index")
|
||||||
|
|
||||||
return [info, overlap, upscaler_index]
|
return [info, overlap, upscaler_index, scale_factor]
|
||||||
|
|
||||||
def run(self, p, _, overlap, upscaler_index):
|
def run(self, p, _, overlap, upscaler_index, scale_factor):
|
||||||
processing.fix_seed(p)
|
processing.fix_seed(p)
|
||||||
upscaler = shared.sd_upscalers[upscaler_index]
|
upscaler = shared.sd_upscalers[upscaler_index]
|
||||||
|
|
||||||
@ -36,7 +37,7 @@ class Script(scripts.Script):
|
|||||||
init_img = p.init_images[0]
|
init_img = p.init_images[0]
|
||||||
|
|
||||||
if (upscaler.name != "None"):
|
if (upscaler.name != "None"):
|
||||||
img = upscaler.scaler.upscale(init_img, 2, upscaler.data_path)
|
img = upscaler.scaler.upscale(init_img, scale_factor, upscaler.data_path)
|
||||||
else:
|
else:
|
||||||
img = init_img
|
img = init_img
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user