Wise-Vision / app.py
raj999's picture
Update app.py
5331d9c verified
raw
history blame
270 Bytes
import gradio as gr
def upload_image(image):
return image
iface = gr.Interface(
fn=upload_image,
inputs=gr.Image(type="jpg"),
outputs="image",
title="Image Uploader",
description="Upload an image and see the result below."
)
iface.launch()