Update app.py
Browse files
app.py
CHANGED
|
@@ -284,7 +284,7 @@ if __name__ == "__main__":
|
|
| 284 |
|
| 285 |
with gr.Row():
|
| 286 |
with gr.Column():
|
| 287 |
-
input_video = gr.Video(label="Upload Video", interactive=True)
|
| 288 |
input_images = gr.File(
|
| 289 |
file_count="multiple",
|
| 290 |
label="Upload Images",
|
|
@@ -309,7 +309,7 @@ if __name__ == "__main__":
|
|
| 309 |
with gr.Column():
|
| 310 |
reconstruction_output = gr.Model3D(
|
| 311 |
label="3D Reconstructed Gaussian Splat",
|
| 312 |
-
height=
|
| 313 |
zoom_speed=0.5,
|
| 314 |
pan_speed=0.5,
|
| 315 |
camera_position=[20, 20, 20],
|
|
|
|
| 284 |
|
| 285 |
with gr.Row():
|
| 286 |
with gr.Column():
|
| 287 |
+
input_video = gr.Video(label="Upload Video", interactive=True, height=512)
|
| 288 |
input_images = gr.File(
|
| 289 |
file_count="multiple",
|
| 290 |
label="Upload Images",
|
|
|
|
| 309 |
with gr.Column():
|
| 310 |
reconstruction_output = gr.Model3D(
|
| 311 |
label="3D Reconstructed Gaussian Splat",
|
| 312 |
+
height=512,
|
| 313 |
zoom_speed=0.5,
|
| 314 |
pan_speed=0.5,
|
| 315 |
camera_position=[20, 20, 20],
|