lakshya-raj's picture
v1.0.1-First Commit
f62dfcf
raw
history blame
207 Bytes
import gradio as gr
import numpy as np
def flip(im):
return np.flipud(im)
demo = gr.Interface(
flip,
gr.Image(source="webcam", streaming=True),
"image",
live=True
)
demo.launch()