Abhilash7 commited on
Commit
cfcdd06
Β·
verified Β·
1 Parent(s): 9294c11

Update ui.py

Browse files
Files changed (1) hide show
  1. ui.py +14 -0
ui.py CHANGED
@@ -1,6 +1,20 @@
1
  import gradio as gr
2
  from PIL import Image
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  def build_ui(try_on_fn, styles):
5
  with gr.Blocks(title="Salon Hairstyle Virtual Try-On") as demo:
6
  gr.Markdown("## πŸ’‡β€β™€οΈ Salon Hairstyle Virtual Try-On")
 
1
  import gradio as gr
2
  from PIL import Image
3
 
4
+ def build_ui(try_on_fn, styles):
5
+ with gr.Blocks(title="Salon Hairstyle Virtual Try-On") as demo:
6
+ gr.Markdown("## πŸ’‡β€β™€οΈ Salon Hairstyle Virtual Try-On")
7
+ with gr.Row():
8
+ with gr.Column():
9
+ inp = gr.Image(type="numpy", label="Upload or capture", sources=["upload", "webcam"])
10
+ style = gr.Dropdown(choices=styles, label="Choose a hairstyle", interactive=True)
11
+ btn = gr.Button("Try On")
12
+ with gr.Column():
13
+ out = gr.Image(type="numpy", label="Result", interactive=False)
14
+ btn.click(fn=try_on_fn, inputs=[inp, style], outputs=out)
15
+ return demoimport gradio as gr
16
+ from PIL import Image
17
+
18
  def build_ui(try_on_fn, styles):
19
  with gr.Blocks(title="Salon Hairstyle Virtual Try-On") as demo:
20
  gr.Markdown("## πŸ’‡β€β™€οΈ Salon Hairstyle Virtual Try-On")