narain commited on
Commit
c7fc3bf
·
1 Parent(s): 52261a5

update code

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -75,7 +75,8 @@ iface = gr.Interface(
75
  inputs=[
76
  gr.Image(label="Input Image"),
77
  gr.Radio(["Gaussian", "Lens"], label="Blur Type", value="Gaussian"),
78
- gr.Slider(1, 30, value=15, step=1, label="Blur Strength")
 
79
  ],
80
  outputs=gr.Image(label="Output Image"),
81
  title="Image Segmentation and Blurring",
 
75
  inputs=[
76
  gr.Image(label="Input Image"),
77
  gr.Radio(["Gaussian", "Lens"], label="Blur Type", value="Gaussian"),
78
+ gr.Slider(1, 30, value=15, step=1, label="Blur Strength"),
79
+ gr.Slider(-10, 10, value=-4, step=0.1, label="Depth Threshold")
80
  ],
81
  outputs=gr.Image(label="Output Image"),
82
  title="Image Segmentation and Blurring",