Update app.py
Browse files
app.py
CHANGED
@@ -229,11 +229,14 @@ with gr.Blocks(theme='pikto/theme@>=0.0.1,<0.0.3') as pan:
|
|
229 |
|
230 |
b1.click(get_next10_images, [df, row_count], [df, row_count, img_search], api_name = "load_playgroundai_images" )
|
231 |
|
232 |
-
|
233 |
with gr.Tab("Rem_BG"):
|
234 |
-
|
235 |
-
|
236 |
-
|
|
|
|
|
|
|
237 |
with gr.Row():
|
238 |
|
239 |
text_input = gr.Textbox() ## Diffuser
|
|
|
229 |
|
230 |
b1.click(get_next10_images, [df, row_count], [df, row_count, img_search], api_name = "load_playgroundai_images" )
|
231 |
|
232 |
+
##########################
|
233 |
with gr.Tab("Rem_BG"):
|
234 |
+
|
235 |
+
color_state = gr.State(value=False)
|
236 |
+
matting_state = gr.State(value=(0, 0, 0))
|
237 |
+
|
238 |
+
gr.HTML("<center><h1>Remove Background Tool</h1></center>")
|
239 |
+
|
240 |
with gr.Row():
|
241 |
|
242 |
text_input = gr.Textbox() ## Diffuser
|