2024-03-16 06:04:08 +00:00
import re
2023-01-23 06:24:43 +00:00
from PIL import Image
import numpy as np
from modules import scripts_postprocessing , shared
import gradio as gr
2024-03-11 22:28:15 +00:00
from modules . ui_components import FormRow , ToolButton , InputAccordion
2023-03-31 05:25:39 +00:00
from modules . ui import switch_values_symbol
2023-01-23 06:24:43 +00:00
upscale_cache = { }
2024-03-31 05:17:22 +00:00
def limit_size_by_one_dimention ( w , h , limit ) :
if h > w and h > limit :
w = limit * w / / h
h = limit
2024-03-31 13:05:15 +00:00
elif w > limit :
2024-03-31 05:17:22 +00:00
h = limit * h / / w
w = limit
return int ( w ) , int ( h )
2024-03-17 10:14:12 +00:00
2023-01-23 06:24:43 +00:00
class ScriptPostprocessingUpscale ( scripts_postprocessing . ScriptPostprocessing ) :
name = " Upscale "
order = 1000
def ui ( self ) :
2024-01-20 11:37:49 +00:00
selected_tab = gr . Number ( value = 0 , visible = False )
2023-01-23 06:24:43 +00:00
2024-03-11 22:28:15 +00:00
with InputAccordion ( True , label = " Upscale " , elem_id = " extras_upscale " ) as upscale_enabled :
with FormRow ( ) :
extras_upscaler_1 = gr . Dropdown ( label = ' Upscaler 1 ' , elem_id = " extras_upscaler_1 " , choices = [ x . name for x in shared . sd_upscalers ] , value = shared . sd_upscalers [ 0 ] . name )
with FormRow ( ) :
extras_upscaler_2 = gr . Dropdown ( label = ' Upscaler 2 ' , elem_id = " extras_upscaler_2 " , choices = [ x . name for x in shared . sd_upscalers ] , value = shared . sd_upscalers [ 0 ] . name )
extras_upscaler_2_visibility = gr . Slider ( minimum = 0.0 , maximum = 1.0 , step = 0.001 , label = " Upscaler 2 visibility " , value = 0.0 , elem_id = " extras_upscaler_2_visibility " )
2023-03-20 13:09:36 +00:00
with FormRow ( ) :
with gr . Tabs ( elem_id = " extras_resize_mode " ) :
with gr . TabItem ( ' Scale by ' , elem_id = " extras_scale_by_tab " ) as tab_scale_by :
2024-03-31 05:17:22 +00:00
with gr . Row ( ) :
2024-03-31 05:20:19 +00:00
with gr . Column ( scale = 4 ) :
2024-03-31 05:17:22 +00:00
upscaling_resize = gr . Slider ( minimum = 1.0 , maximum = 8.0 , step = 0.05 , label = " Resize " , value = 4 , elem_id = " extras_upscaling_resize " )
2024-03-31 05:20:19 +00:00
with gr . Column ( scale = 1 , min_width = 160 ) :
2024-04-01 09:58:45 +00:00
max_side_length = gr . Number ( label = " Max side length " , value = 0 , elem_id = " extras_upscale_max_side_length " , tooltip = " If any of two sides of the image ends up larger than specified, will downscale it to fit. 0 = no limit. " , min_width = 160 , step = 8 , minimum = 0 )
2023-03-20 13:09:36 +00:00
with gr . TabItem ( ' Scale to ' , elem_id = " extras_scale_to_tab " ) as tab_scale_to :
with FormRow ( ) :
2023-03-31 05:19:40 +00:00
with gr . Column ( elem_id = " upscaling_column_size " , scale = 4 ) :
2024-01-08 21:23:35 +00:00
upscaling_resize_w = gr . Slider ( minimum = 64 , maximum = 8192 , step = 8 , label = " Width " , value = 512 , elem_id = " extras_upscaling_resize_w " )
upscaling_resize_h = gr . Slider ( minimum = 64 , maximum = 8192 , step = 8 , label = " Height " , value = 512 , elem_id = " extras_upscaling_resize_h " )
2023-03-31 05:19:40 +00:00
with gr . Column ( elem_id = " upscaling_dimensions_row " , scale = 1 , elem_classes = " dimensions-tools " ) :
2023-09-01 23:01:08 +00:00
upscaling_res_switch_btn = ToolButton ( value = switch_values_symbol , elem_id = " upscaling_res_switch_btn " , tooltip = " Switch width/height " )
2023-03-31 05:19:40 +00:00
upscaling_crop = gr . Checkbox ( label = ' Crop to fit ' , value = True , elem_id = " extras_upscaling_crop " )
2023-03-20 13:09:36 +00:00
2024-03-16 06:04:08 +00:00
def on_selected_upscale_method ( upscale_method ) :
if not shared . opts . set_scale_by_when_changing_upscaler :
return gr . update ( )
match = re . search ( r ' ( \ d)[xX]|[xX]( \ d) ' , upscale_method )
if not match :
return gr . update ( )
return gr . update ( value = int ( match . group ( 1 ) or match . group ( 2 ) ) )
2023-03-31 05:19:40 +00:00
upscaling_res_switch_btn . click ( lambda w , h : ( h , w ) , inputs = [ upscaling_resize_w , upscaling_resize_h ] , outputs = [ upscaling_resize_w , upscaling_resize_h ] , show_progress = False )
2023-01-23 06:24:43 +00:00
tab_scale_by . select ( fn = lambda : 0 , inputs = [ ] , outputs = [ selected_tab ] )
tab_scale_to . select ( fn = lambda : 1 , inputs = [ ] , outputs = [ selected_tab ] )
2024-03-16 06:04:08 +00:00
extras_upscaler_1 . change ( on_selected_upscale_method , inputs = [ extras_upscaler_1 ] , outputs = [ upscaling_resize ] , show_progress = " hidden " )
2023-01-23 06:24:43 +00:00
return {
2024-03-11 22:28:15 +00:00
" upscale_enabled " : upscale_enabled ,
2023-01-23 06:24:43 +00:00
" upscale_mode " : selected_tab ,
" upscale_by " : upscaling_resize ,
2024-03-31 05:17:22 +00:00
" max_side_length " : max_side_length ,
2023-01-23 06:24:43 +00:00
" upscale_to_width " : upscaling_resize_w ,
" upscale_to_height " : upscaling_resize_h ,
" upscale_crop " : upscaling_crop ,
" upscaler_1_name " : extras_upscaler_1 ,
" upscaler_2_name " : extras_upscaler_2 ,
" upscaler_2_visibility " : extras_upscaler_2_visibility ,
}
2024-03-31 05:17:22 +00:00
def upscale ( self , image , info , upscaler , upscale_mode , upscale_by , max_side_length , upscale_to_width , upscale_to_height , upscale_crop ) :
2023-01-23 06:24:43 +00:00
if upscale_mode == 1 :
upscale_by = max ( upscale_to_width / image . width , upscale_to_height / image . height )
info [ " Postprocess upscale to " ] = f " { upscale_to_width } x { upscale_to_height } "
else :
info [ " Postprocess upscale by " ] = upscale_by
2024-03-31 05:17:22 +00:00
if max_side_length != 0 and max ( * image . size ) * upscale_by > max_side_length :
2024-03-17 10:14:12 +00:00
upscale_mode = 1
upscale_crop = False
2024-03-31 05:17:22 +00:00
upscale_to_width , upscale_to_height = limit_size_by_one_dimention ( image . width * upscale_by , image . height * upscale_by , max_side_length )
2024-03-17 10:14:12 +00:00
upscale_by = max ( upscale_to_width / image . width , upscale_to_height / image . height )
2024-03-31 05:17:22 +00:00
info [ " Max side length " ] = max_side_length
2023-01-23 06:24:43 +00:00
cache_key = ( hash ( np . array ( image . getdata ( ) ) . tobytes ( ) ) , upscaler . name , upscale_mode , upscale_by , upscale_to_width , upscale_to_height , upscale_crop )
cached_image = upscale_cache . pop ( cache_key , None )
if cached_image is not None :
image = cached_image
else :
image = upscaler . scaler . upscale ( image , upscale_by , upscaler . data_path )
upscale_cache [ cache_key ] = image
if len ( upscale_cache ) > shared . opts . upscaling_max_images_in_cache :
upscale_cache . pop ( next ( iter ( upscale_cache ) , None ) , None )
if upscale_mode == 1 and upscale_crop :
cropped = Image . new ( " RGB " , ( upscale_to_width , upscale_to_height ) )
cropped . paste ( image , box = ( upscale_to_width / / 2 - image . width / / 2 , upscale_to_height / / 2 - image . height / / 2 ) )
image = cropped
info [ " Postprocess crop to " ] = f " { image . width } x { image . height } "
return image
2024-03-31 05:17:22 +00:00
def process_firstpass ( self , pp : scripts_postprocessing . PostprocessedImage , upscale_enabled = True , upscale_mode = 1 , upscale_by = 2.0 , max_side_length = 0 , upscale_to_width = None , upscale_to_height = None , upscale_crop = False , upscaler_1_name = None , upscaler_2_name = None , upscaler_2_visibility = 0.0 ) :
if upscale_mode == 1 :
pp . shared . target_width = upscale_to_width
pp . shared . target_height = upscale_to_height
2023-12-02 15:01:11 +00:00
else :
2024-03-31 05:17:22 +00:00
pp . shared . target_width = int ( pp . image . width * upscale_by )
pp . shared . target_height = int ( pp . image . height * upscale_by )
pp . shared . target_width , pp . shared . target_height = limit_size_by_one_dimention ( pp . shared . target_width , pp . shared . target_height , max_side_length )
2023-12-02 15:01:11 +00:00
2024-03-31 05:17:22 +00:00
def process ( self , pp : scripts_postprocessing . PostprocessedImage , upscale_enabled = True , upscale_mode = 1 , upscale_by = 2.0 , max_side_length = 0 , upscale_to_width = None , upscale_to_height = None , upscale_crop = False , upscaler_1_name = None , upscaler_2_name = None , upscaler_2_visibility = 0.0 ) :
if not upscale_enabled :
2024-03-11 22:28:15 +00:00
return
2024-03-31 05:17:22 +00:00
upscaler_1_name = upscaler_1_name
2023-01-23 06:24:43 +00:00
if upscaler_1_name == " None " :
upscaler_1_name = None
upscaler1 = next ( iter ( [ x for x in shared . sd_upscalers if x . name == upscaler_1_name ] ) , None )
assert upscaler1 or ( upscaler_1_name is None ) , f ' could not find upscaler named { upscaler_1_name } '
if not upscaler1 :
return
2024-03-31 05:17:22 +00:00
upscaler_2_name = upscaler_2_name
2023-01-23 06:24:43 +00:00
if upscaler_2_name == " None " :
upscaler_2_name = None
upscaler2 = next ( iter ( [ x for x in shared . sd_upscalers if x . name == upscaler_2_name and x . name != " None " ] ) , None )
assert upscaler2 or ( upscaler_2_name is None ) , f ' could not find upscaler named { upscaler_2_name } '
2024-03-31 05:17:22 +00:00
upscaled_image = self . upscale ( pp . image , pp . info , upscaler1 , upscale_mode , upscale_by , max_side_length , upscale_to_width , upscale_to_height , upscale_crop )
2023-05-10 04:52:45 +00:00
pp . info [ " Postprocess upscaler " ] = upscaler1 . name
2023-01-23 06:24:43 +00:00
2024-03-31 05:17:22 +00:00
if upscaler2 and upscaler_2_visibility > 0 :
2024-03-31 15:34:58 +00:00
second_upscale = self . upscale ( pp . image , pp . info , upscaler2 , upscale_mode , upscale_by , max_side_length , upscale_to_width , upscale_to_height , upscale_crop )
2024-04-01 09:58:45 +00:00
if upscaled_image . mode != second_upscale . mode :
second_upscale = second_upscale . convert ( upscaled_image . mode )
2024-03-31 05:17:22 +00:00
upscaled_image = Image . blend ( upscaled_image , second_upscale , upscaler_2_visibility )
2023-01-23 06:24:43 +00:00
2023-05-10 04:52:45 +00:00
pp . info [ " Postprocess upscaler 2 " ] = upscaler2 . name
2023-01-23 06:24:43 +00:00
pp . image = upscaled_image
def image_changed ( self ) :
upscale_cache . clear ( )
2023-01-26 20:29:27 +00:00
class ScriptPostprocessingUpscaleSimple ( ScriptPostprocessingUpscale ) :
name = " Simple Upscale "
order = 900
def ui ( self ) :
with FormRow ( ) :
upscaler_name = gr . Dropdown ( label = ' Upscaler ' , choices = [ x . name for x in shared . sd_upscalers ] , value = shared . sd_upscalers [ 0 ] . name )
upscale_by = gr . Slider ( minimum = 0.05 , maximum = 8.0 , step = 0.05 , label = " Upscale by " , value = 2 )
return {
" upscale_by " : upscale_by ,
" upscaler_name " : upscaler_name ,
}
2023-12-02 15:01:11 +00:00
def process_firstpass ( self , pp : scripts_postprocessing . PostprocessedImage , upscale_by = 2.0 , upscaler_name = None ) :
pp . shared . target_width = int ( pp . image . width * upscale_by )
pp . shared . target_height = int ( pp . image . height * upscale_by )
2023-01-26 20:29:27 +00:00
def process ( self , pp : scripts_postprocessing . PostprocessedImage , upscale_by = 2.0 , upscaler_name = None ) :
if upscaler_name is None or upscaler_name == " None " :
return
upscaler1 = next ( iter ( [ x for x in shared . sd_upscalers if x . name == upscaler_name ] ) , None )
assert upscaler1 , f ' could not find upscaler named { upscaler_name } '
2024-03-17 10:14:12 +00:00
pp . image = self . upscale ( pp . image , pp . info , upscaler1 , 0 , upscale_by , 0 , 0 , 0 , False )
2023-05-10 04:52:45 +00:00
pp . info [ " Postprocess upscaler " ] = upscaler1 . name