gradio/demo/webcam.py
2020-08-28 10:56:03 -05:00

12 lines
188 B
Python

import gradio as gr
def snap(image):
return image
io = gr.Interface(snap, gr.inputs.Image(shape=(100,100), image_mode="L", source="webcam"), "image")
io.test_launch()
io.launch()