Update app.py
Browse files
app.py
CHANGED
@@ -253,6 +253,8 @@ def generate_splats_from_images(image_paths, session_id=None):
|
|
253 |
if isinstance(file_data, tuple):
|
254 |
file_path, _ = file_data
|
255 |
processed_image_paths.append(file_path)
|
|
|
|
|
256 |
|
257 |
image_paths = processed_image_paths
|
258 |
print(image_paths)
|
|
|
253 |
if isinstance(file_data, tuple):
|
254 |
file_path, _ = file_data
|
255 |
processed_image_paths.append(file_path)
|
256 |
+
else:
|
257 |
+
processed_image_paths.append(file_data)
|
258 |
|
259 |
image_paths = processed_image_paths
|
260 |
print(image_paths)
|