Spaces:
Running
Running
Fix parameter order
Browse files- demo/mast3r_demo.py +6 -6
demo/mast3r_demo.py
CHANGED
|
@@ -323,13 +323,13 @@ def mast3r_demo_tab():
|
|
| 323 |
examples=[
|
| 324 |
[
|
| 325 |
puma_images[0],
|
| 326 |
-
1.5, 0.0, 0.2, True,
|
| 327 |
puma_images,
|
| 328 |
'puma',
|
| 329 |
None,
|
| 330 |
]
|
| 331 |
],
|
| 332 |
-
inputs=[snapshot, min_conf_thr, matching_conf_thr,
|
| 333 |
fn=get_reconstructed_scene,
|
| 334 |
outputs=[outmodel],
|
| 335 |
run_on_click=True,
|
|
@@ -339,13 +339,13 @@ def mast3r_demo_tab():
|
|
| 339 |
examples=[
|
| 340 |
[
|
| 341 |
turtle_images[0],
|
| 342 |
-
1.5, 0.0, 0.2, True,
|
| 343 |
turtle_images,
|
| 344 |
'turtle',
|
| 345 |
None
|
| 346 |
]
|
| 347 |
],
|
| 348 |
-
inputs=[snapshot, min_conf_thr, matching_conf_thr,
|
| 349 |
fn=get_reconstructed_scene,
|
| 350 |
outputs=[outmodel],
|
| 351 |
run_on_click=True,
|
|
@@ -355,12 +355,12 @@ def mast3r_demo_tab():
|
|
| 355 |
examples=[
|
| 356 |
[
|
| 357 |
tower_images[0],
|
| 358 |
-
1.5, 0.0, 0.2, True, False,
|
| 359 |
tower_images,
|
| 360 |
'tower',
|
| 361 |
]
|
| 362 |
],
|
| 363 |
-
inputs=[snapshot, min_conf_thr, matching_conf_thr,
|
| 364 |
fn=get_reconstructed_scene,
|
| 365 |
outputs=[outmodel],
|
| 366 |
run_on_click=True,
|
|
|
|
| 323 |
examples=[
|
| 324 |
[
|
| 325 |
puma_images[0],
|
| 326 |
+
1.5, 0.0, True, 0.2, True, False,
|
| 327 |
puma_images,
|
| 328 |
'puma',
|
| 329 |
None,
|
| 330 |
]
|
| 331 |
],
|
| 332 |
+
inputs=[snapshot, min_conf_thr, matching_conf_thr, as_pointcloud, cam_size, shared_intrinsics, clean_depth, inputfiles, example_name],
|
| 333 |
fn=get_reconstructed_scene,
|
| 334 |
outputs=[outmodel],
|
| 335 |
run_on_click=True,
|
|
|
|
| 339 |
examples=[
|
| 340 |
[
|
| 341 |
turtle_images[0],
|
| 342 |
+
1.5, 0.0, True, 0.2, True, False,
|
| 343 |
turtle_images,
|
| 344 |
'turtle',
|
| 345 |
None
|
| 346 |
]
|
| 347 |
],
|
| 348 |
+
inputs=[snapshot, min_conf_thr, matching_conf_thr, as_pointcloud, cam_size, shared_intrinsics, clean_depth, inputfiles, example_name],
|
| 349 |
fn=get_reconstructed_scene,
|
| 350 |
outputs=[outmodel],
|
| 351 |
run_on_click=True,
|
|
|
|
| 355 |
examples=[
|
| 356 |
[
|
| 357 |
tower_images[0],
|
| 358 |
+
1.5, 0.0, True, 0.2, True, False,
|
| 359 |
tower_images,
|
| 360 |
'tower',
|
| 361 |
]
|
| 362 |
],
|
| 363 |
+
inputs=[snapshot, min_conf_thr, matching_conf_thr, as_pointcloud, cam_size, shared_intrinsics, clean_depth, inputfiles, example_name],
|
| 364 |
fn=get_reconstructed_scene,
|
| 365 |
outputs=[outmodel],
|
| 366 |
run_on_click=True,
|