Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tlodato
/
bodystory
like
0
Runtime error
App
Files
Files
Community
main
bodystory
/
app.py
tlodato
webcam?
62a6b82
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
206 Bytes
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()