mtwohey2 commited on
Commit
c5699c4
·
verified ·
1 Parent(s): 4dd9711

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -43,7 +43,6 @@ def stitch_rgbd_videos(
43
  stitched_frames = []
44
  for i in range(min(len(full_frames), len(depths))):
45
  rgb_full = full_frames[i] # Full-resolution RGB frame.
46
- depth_frame = depths[i]
47
  depth_frame = depths[i].astype(np.uint8) # Reduce memory footprint
48
 
49
  if d_max == d_min:
 
43
  stitched_frames = []
44
  for i in range(min(len(full_frames), len(depths))):
45
  rgb_full = full_frames[i] # Full-resolution RGB frame.
 
46
  depth_frame = depths[i].astype(np.uint8) # Reduce memory footprint
47
 
48
  if d_max == d_min: