Saitama0510 commited on
Commit
a36420f
·
verified ·
1 Parent(s): 900327c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def depth_based_blur(orig_image: Image.Image, depth_map: Image.Image, max_blur:
27
  orig_rgba = orig_image.convert("RGBA")
28
  final_image = orig_rgba.copy()
29
 
30
- # Split the [0,1] depth range into num_bands intervals.
31
  band_edges = np.linspace(0, 1, num_bands + 1)
32
 
33
 
 
27
  orig_rgba = orig_image.convert("RGBA")
28
  final_image = orig_rgba.copy()
29
 
30
+
31
  band_edges = np.linspace(0, 1, num_bands + 1)
32
 
33