Update app.py
Browse files
app.py
CHANGED
@@ -140,10 +140,10 @@ iface = gr.Interface(
|
|
140 |
gr.Slider(0, 30, value=15, step=1, label="Blur Intensity (for both effects)")
|
141 |
],
|
142 |
outputs=gr.Image(type="pil", label="Output Image"),
|
143 |
-
title="Interactive Blur Effects Demo",
|
144 |
description=(
|
145 |
-
"Upload an image and choose an effect. For 'Gaussian Blur Background', adjust the segmentation threshold and blur intensity. "
|
146 |
-
"For 'Depth-based Lens Blur', the blur intensity slider sets the maximum blur based on depth."
|
147 |
)
|
148 |
)
|
149 |
|
|
|
140 |
gr.Slider(0, 30, value=15, step=1, label="Blur Intensity (for both effects)")
|
141 |
],
|
142 |
outputs=gr.Image(type="pil", label="Output Image"),
|
143 |
+
title="EEE 515: Interactive Blur Effects Demo - by: Krishna Vinod",
|
144 |
description=(
|
145 |
+
"How to use this App: Upload an image and choose an effect. For 'Gaussian Blur Background', adjust the segmentation threshold and blur intensity. "
|
146 |
+
"For 'Depth-based Lens Blur', the blur intensity slider sets the maximum blur based on depth. Use the camera interface for more fun interactive experience ;)"
|
147 |
)
|
148 |
)
|
149 |
|