Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
motion-blur
like
7
Runtime error
App
Files
Files
Fetching metadata from the HF Docker repository...
tonyassi
commited on
Jan 10, 2024
Commit
bc393f7
Β·
verified
Β·
1 Parent(s):
0c62edf
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def blur(img):
4
+
return img
5
+
6
+
iface = gr.Interface(fn=blur, inputs=gr.Image(type='pil'), outputs="text")
7
+
iface.launch()