Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,12 @@ def blur(img, distance_blur, amount_blur, amount_subject):
|
|
6 |
|
7 |
iface = gr.Interface(fn=blur,
|
8 |
title="Motion Blur",
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
inputs=[gr.Image(type='pil', label='Image'),
|
10 |
gr.Slider(label='Blur Distance', minimum=0, maximum=500, value=100),
|
11 |
gr.Slider(label='Blur Amount', minimum=0.0, maximum=1.0, value=0.75),
|
|
|
6 |
|
7 |
iface = gr.Interface(fn=blur,
|
8 |
title="Motion Blur",
|
9 |
+
description="""
|
10 |
+
by [Tony Assi](https://www.tonyassi.com/)
|
11 |
+
Please ❤️ this Space.
|
12 |
+
|
13 |
+
I build custom AI apps for companies. <a href="mailto: [email protected]">Email me</a> for business inquiries.
|
14 |
+
""",
|
15 |
inputs=[gr.Image(type='pil', label='Image'),
|
16 |
gr.Slider(label='Blur Distance', minimum=0, maximum=500, value=100),
|
17 |
gr.Slider(label='Blur Amount', minimum=0.0, maximum=1.0, value=0.75),
|