mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
b4d9825409
Ported gradio website into gradio repository, now launched as a docker service from gradio/website
10 lines
214 B
Python
10 lines
214 B
Python
import gradio as gr
|
|
import numpy as np
|
|
|
|
def snap(image):
|
|
return np.flipud(image)
|
|
|
|
iface = gr.Interface(snap, gr.inputs.Image(source="webcam", tool=None), "image")
|
|
if __name__ == "__main__":
|
|
iface.launch()
|
|
|