alexnasa commited on
Commit
6c58a6c
·
verified ·
1 Parent(s): 03f4b66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -234,7 +234,7 @@ def generate_splats_from_video(video_path, session_id=None):
234
  session_id = uuid.uuid4().hex
235
 
236
  images_folder, image_paths = extract_frames(video_path, session_id)
237
- plyfile, rgb_vid, depth_vid = generate_splats_from_images(images_folder, session_id)
238
 
239
  return plyfile, rgb_vid, depth_vid, image_paths
240
 
 
234
  session_id = uuid.uuid4().hex
235
 
236
  images_folder, image_paths = extract_frames(video_path, session_id)
237
+ plyfile, rgb_vid, depth_vid = generate_splats_from_images(image_paths, session_id)
238
 
239
  return plyfile, rgb_vid, depth_vid, image_paths
240