Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
motion-blur
like
8
Running
App
Files
Files
Fetching metadata from the HF Docker repository...
f9db485
motion-blur
/
app.py
tonyassi
Update app.py
f9db485
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
from
Blur
import
motion_blur, background_motion_blur
def
blur
(
img
):
return
img
iface = gr.Interface(fn=blur, inputs=gr.Image(
type
=
'pil'
), outputs=
"text"
)
iface.launch()