freealise commited on
Commit
eceb7b4
1 Parent(s): 286dc9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -147,7 +147,8 @@ def make_video(video_path, outdir='./vis_video_depth', encoder='vits'):
147
 
148
  blur_frame = raw_frame.copy()
149
  i = 240
150
- for j in range(1, 33):
 
151
  blur_lo = np.array([i,i,i])
152
  blur_hi = np.array([i+16,i+16,i+16])
153
  blur_mask = cv2.inRange(depth_color, blur_lo, blur_hi)
 
147
 
148
  blur_frame = raw_frame.copy()
149
  i = 240
150
+ j = 1
151
+ while j < 33:
152
  blur_lo = np.array([i,i,i])
153
  blur_hi = np.array([i+16,i+16,i+16])
154
  blur_mask = cv2.inRange(depth_color, blur_lo, blur_hi)