gccopen / app.py
Javier Flores
sasdsdas
ccc7f1f
raw
history blame
197 Bytes
import gradio as gr
def predict(image):
return image
inp = gr.inputs.Image(source="webcam", shape=(224,224))
iface = gr.Interface(fn=predict, inputs="image", outputs="image")
iface.launch()