AdamGustavsson commited on
Commit
fefbe29
1 Parent(s): 943a2a4

Removing background from webcam before animeGANv2

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,3 +1,6 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("spaces/akhaliq/AnimeGANv2", inputs="webcam").launch()
 
 
 
 
1
  import gradio as gr
2
 
3
+ bgRemove = gr.Interface.load("spaces/euginesiow/remove-bg", inputs="webcam")
4
+ animegan = gr.Interface.load("spaces/akhaliq/AnimeGANv2")
5
+
6
+ gr.Series(brRemove,animegan).launch()