freddyaboulton's picture
Upload with huggingface_hub
06b48bf
raw
history blame contribute delete
No virus
180 Bytes
import numpy as np
import gradio as gr
def snap(image):
return np.flipud(image)
demo = gr.Interface(snap, "webcam", "image")
if __name__ == "__main__":
demo.launch()