Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ with gr.Blocks(title="Remove background") as app:
|
|
76 |
color_state = gr.State(value=False)
|
77 |
matting_state = gr.State(value=(0, 0, 0))
|
78 |
|
79 |
-
gr.HTML("<center><h1>
|
80 |
with gr.Row(equal_height=False):
|
81 |
with gr.Column():
|
82 |
input_img = gr.Image(type="pil", label="Input image")
|
@@ -126,6 +126,6 @@ with gr.Blocks(title="Remove background") as app:
|
|
126 |
outputs=[output_img, mask_img])
|
127 |
|
128 |
with gr.Row():
|
129 |
-
gr.HTML(footer)
|
130 |
|
131 |
app.launch(share=False, debug=True, enable_queue=True, show_error=True)
|
|
|
76 |
color_state = gr.State(value=False)
|
77 |
matting_state = gr.State(value=(0, 0, 0))
|
78 |
|
79 |
+
gr.HTML("<center><h1>Background Remover</h1></center>")
|
80 |
with gr.Row(equal_height=False):
|
81 |
with gr.Column():
|
82 |
input_img = gr.Image(type="pil", label="Input image")
|
|
|
126 |
outputs=[output_img, mask_img])
|
127 |
|
128 |
with gr.Row():
|
129 |
+
#gr.HTML(footer)
|
130 |
|
131 |
app.launch(share=False, debug=True, enable_queue=True, show_error=True)
|