d0436fb 62a6b82 d0436fb 62a6b82 d0436fb 62a6b82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr import numpy as np def flip(im): return np.flipud(im) demo = gr.Interface( flip, gr.Image(sources=["webcam"], streaming=True), "image", live=True ) demo.launch()