freealise commited on
Commit
caebb59
·
verified ·
1 Parent(s): 43e945e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -195,8 +195,8 @@ def make_video(video_path, outdir='./vis_video_depth', encoder='vits', blur_data
195
  # change image to black where we found white
196
  depth_gray[0:int(depth_gray.shape[0]/8*7)-1, 0:depth_gray.shape[1]][mask>0] = 0
197
 
198
- mask = cv2.inRange(depth_gray[int(depth_gray.shape[0]/8*7):depth_gray.shape[0], 0:depth_gray.shape[1]], 192, 255)
199
- depth_gray[int(depth_gray.shape[0]/8*7):depth_gray.shape[0], 0:depth_gray.shape[1]][mask>0] = 192
200
 
201
  depth_color = cv2.cvtColor(depth_gray, cv2.COLOR_GRAY2BGR)
202
  # split_region = np.ones((frame_height, margin_width, 3), dtype=np.uint8) * 255
@@ -224,10 +224,11 @@ def make_video(video_path, outdir='./vis_video_depth', encoder='vits', blur_data
224
  blur_frame = blur_image(raw_frame, depth_color, blur_data)
225
 
226
  # encoding depth within original video
227
- blur_frame = (np.floor(blur_frame / 6) * 6).astype(np.uint8)
228
- depth_r = np.floor(depth_gray / 6).astype(np.uint8)
 
229
  # may use green channel for 16 levels of opacity
230
- depth_b = depth_gray - depth_r * 6
231
  blur_frame[:,:,0] = blur_frame[:,:,0] + depth_r
232
  # blur_frame[:,:,1] = blur_frame[:,:,1] + opacity_g
233
  blur_frame[:,:,2] = blur_frame[:,:,2] + depth_b
 
195
  # change image to black where we found white
196
  depth_gray[0:int(depth_gray.shape[0]/8*7)-1, 0:depth_gray.shape[1]][mask>0] = 0
197
 
198
+ mask = cv2.inRange(depth_gray[int(depth_gray.shape[0]/8*7):depth_gray.shape[0], 0:depth_gray.shape[1]], 125, 255)
199
+ depth_gray[int(depth_gray.shape[0]/8*7):depth_gray.shape[0], 0:depth_gray.shape[1]][mask>0] = 125
200
 
201
  depth_color = cv2.cvtColor(depth_gray, cv2.COLOR_GRAY2BGR)
202
  # split_region = np.ones((frame_height, margin_width, 3), dtype=np.uint8) * 255
 
224
  blur_frame = blur_image(raw_frame, depth_color, blur_data)
225
 
226
  # encoding depth within original video
227
+ dd = 5
228
+ blur_frame = (np.floor(blur_frame / dd) * dd).astype(np.uint8)
229
+ depth_r = np.floor(depth_gray / dd).astype(np.uint8)
230
  # may use green channel for 16 levels of opacity
231
+ depth_b = depth_gray - depth_r * dd
232
  blur_frame[:,:,0] = blur_frame[:,:,0] + depth_r
233
  # blur_frame[:,:,1] = blur_frame[:,:,1] + opacity_g
234
  blur_frame[:,:,2] = blur_frame[:,:,2] + depth_b