mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
7 lines
132 B
Python
7 lines
132 B
Python
import gradio as gr
|
|
import numpy as np
|
|
|
|
def snap(image):
|
|
return np.flipud(image)
|
|
|
|
gr.Interface(snap, "webcam", "image").launch() |