File size: 128 Bytes
66ecf51
 
6876efa
 
66ecf51
1
2
3
4
5
import gradio as gr
def segment(image):
    return image
    
gr.Interface(fn=segment, inputs="image", outputs="image").launch()