Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ iface = gr.Interface(fn=blur,
|
|
11 |
examples=[["input.jpg", 200, 1]],
|
12 |
|
13 |
inputs=[gr.Image(type='pil', label='Image'),
|
14 |
-
gr.Slider(label='Blur Distance', minimum=0, maximum=500, value=
|
15 |
-
gr.Slider(label='Blur Amount', minimum=0.0, maximum=1.0, value=
|
16 |
|
17 |
outputs=gr.Image(label='Output'))
|
18 |
|
|
|
11 |
examples=[["input.jpg", 200, 1]],
|
12 |
|
13 |
inputs=[gr.Image(type='pil', label='Image'),
|
14 |
+
gr.Slider(label='Blur Distance', minimum=0, maximum=500, value=200),
|
15 |
+
gr.Slider(label='Blur Amount', minimum=0.0, maximum=1.0, value=1)],
|
16 |
|
17 |
outputs=gr.Image(label='Output'))
|
18 |
|