freealise commited on
Commit
1c21230
·
verified ·
1 Parent(s): eea5784

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -223,7 +223,7 @@ def make_video(video_path, outdir='./vis_video_depth', encoder='vits', blur_data
223
  thumbnail_old = thumbnail
224
 
225
  blur_frame = blur_image(raw_frame, depth_color, blur_data)
226
- comb_frame = np.concatenate((blur_frame, depth_color), axis=1)
227
 
228
  cv2.imwrite(f"f{count}_comb.jpg", comb_frame)
229
  comb_frames.append(f"f{count}_comb.jpg")
 
223
  thumbnail_old = thumbnail
224
 
225
  blur_frame = blur_image(raw_frame, depth_color, blur_data)
226
+ comb_frame = np.concatenate((blur_frame, depth_color), axis=0)
227
 
228
  cv2.imwrite(f"f{count}_comb.jpg", comb_frame)
229
  comb_frames.append(f"f{count}_comb.jpg")