2023-01-23 06:24:43 +00:00
import gradio as gr
2023-12-02 15:01:11 +00:00
from modules import scripts , shared , ui_common , postprocessing , call_queue , ui_toprow
2023-01-23 06:24:43 +00:00
import modules . generation_parameters_copypaste as parameters_copypaste
def create_ui ( ) :
2023-12-02 15:01:11 +00:00
dummy_component = gr . Label ( visible = False )
2023-01-23 06:24:43 +00:00
tab_index = gr . State ( value = 0 )
2023-08-04 04:50:17 +00:00
with gr . Row ( equal_height = False , variant = ' compact ' ) :
2023-01-23 06:24:43 +00:00
with gr . Column ( variant = ' compact ' ) :
with gr . Tabs ( elem_id = " mode_extras " ) :
2023-03-29 18:04:02 +00:00
with gr . TabItem ( ' Single Image ' , id = " single_image " , elem_id = " extras_single_tab " ) as tab_single :
2023-01-23 06:24:43 +00:00
extras_image = gr . Image ( label = " Source " , source = " upload " , interactive = True , type = " pil " , elem_id = " extras_image " )
2023-03-29 18:04:02 +00:00
with gr . TabItem ( ' Batch Process ' , id = " batch_process " , elem_id = " extras_batch_process_tab " ) as tab_batch :
2023-04-09 19:33:09 +00:00
image_batch = gr . Files ( label = " Batch Process " , interactive = True , elem_id = " extras_image_batch " )
2023-01-23 06:24:43 +00:00
2023-03-29 18:04:02 +00:00
with gr . TabItem ( ' Batch from Directory ' , id = " batch_from_directory " , elem_id = " extras_batch_directory_tab " ) as tab_batch_dir :
2023-01-23 06:24:43 +00:00
extras_batch_input_dir = gr . Textbox ( label = " Input directory " , * * shared . hide_dirs , placeholder = " A directory on the same machine where the server is running. " , elem_id = " extras_batch_input_dir " )
extras_batch_output_dir = gr . Textbox ( label = " Output directory " , * * shared . hide_dirs , placeholder = " Leave blank to save images to the default path. " , elem_id = " extras_batch_output_dir " )
show_extras_results = gr . Checkbox ( label = ' Show result images ' , value = True , elem_id = " extras_show_extras_results " )
script_inputs = scripts . scripts_postproc . setup_ui ( )
with gr . Column ( ) :
2023-12-02 15:01:11 +00:00
toprow = ui_toprow . Toprow ( is_compact = True , is_img2img = False , id_part = " extras " )
toprow . create_inline_toprow_image ( )
submit = toprow . submit
2023-01-23 06:24:43 +00:00
result_images , html_info_x , html_info , html_log = ui_common . create_output_panel ( " extras " , shared . opts . outdir_extras_samples )
tab_single . select ( fn = lambda : 0 , inputs = [ ] , outputs = [ tab_index ] )
tab_batch . select ( fn = lambda : 1 , inputs = [ ] , outputs = [ tab_index ] )
tab_batch_dir . select ( fn = lambda : 2 , inputs = [ ] , outputs = [ tab_index ] )
submit . click (
2023-12-04 10:11:00 +00:00
fn = call_queue . wrap_gradio_gpu_call ( postprocessing . run_postprocessing_webui , extra_outputs = [ None , ' ' ] ) ,
2023-12-02 15:01:11 +00:00
_js = " submit_extras " ,
2023-01-23 06:24:43 +00:00
inputs = [
2023-12-02 15:01:11 +00:00
dummy_component ,
2023-01-23 06:24:43 +00:00
tab_index ,
extras_image ,
image_batch ,
extras_batch_input_dir ,
extras_batch_output_dir ,
show_extras_results ,
* script_inputs
] ,
outputs = [
result_images ,
html_info_x ,
2023-12-02 15:01:11 +00:00
html_log ,
] ,
show_progress = False ,
2023-01-23 06:24:43 +00:00
)
parameters_copypaste . add_paste_fields ( " extras " , extras_image , None )
extras_image . change (
fn = scripts . scripts_postproc . image_changed ,
inputs = [ ] , outputs = [ ]
)