Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
def segment(image):
|
| 3 |
-
|
| 4 |
-
|
| 5 |
gr.Interface(fn=segment, inputs="image", outputs="image").launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
def segment(image):
|
| 3 |
+
return image
|
| 4 |
+
|
| 5 |
gr.Interface(fn=segment, inputs="image", outputs="image").launch()
|