Spaces:
Running on Zero
Running on Zero
add final version
Browse files- InfiniDepth/model/block/prompt_models/__pycache__/__init__.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/__pycache__/rope.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/__pycache__/sam.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/__pycache__/selfattn.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/utils/__pycache__/__init__.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/utils/__pycache__/pe_utils.cpython-310.pyc +0 -0
- InfiniDepth/model/block/prompt_models/utils/__pycache__/transformer.cpython-310.pyc +0 -0
- app.py +4 -4
InfiniDepth/model/block/prompt_models/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/__pycache__/__init__.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/__pycache__/__init__.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/__pycache__/rope.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/__pycache__/rope.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/__pycache__/rope.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/__pycache__/sam.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/__pycache__/sam.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/__pycache__/sam.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/__pycache__/selfattn.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/__pycache__/selfattn.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/__pycache__/selfattn.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/utils/__pycache__/__init__.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/utils/__pycache__/__init__.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/utils/__pycache__/__init__.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/utils/__pycache__/pe_utils.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/utils/__pycache__/pe_utils.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/utils/__pycache__/pe_utils.cpython-310.pyc differ
|
|
|
InfiniDepth/model/block/prompt_models/utils/__pycache__/transformer.cpython-310.pyc
CHANGED
|
Binary files a/InfiniDepth/model/block/prompt_models/utils/__pycache__/transformer.cpython-310.pyc and b/InfiniDepth/model/block/prompt_models/utils/__pycache__/transformer.cpython-310.pyc differ
|
|
|
app.py
CHANGED
|
@@ -445,10 +445,10 @@ with gr.Blocks(css=CSS, theme=gr.themes.Soft()) as demo:
|
|
| 445 |
filter_point_cloud = gr.Checkbox(label="Filter Flying Points", value=True)
|
| 446 |
|
| 447 |
with gr.Accordion("Optional Camera Intrinsics", open=False):
|
| 448 |
-
fx_org = gr.
|
| 449 |
-
fy_org = gr.
|
| 450 |
-
cx_org = gr.
|
| 451 |
-
cy_org = gr.
|
| 452 |
|
| 453 |
submit_btn = gr.Button("Run Inference", variant="primary")
|
| 454 |
|
|
|
|
| 445 |
filter_point_cloud = gr.Checkbox(label="Filter Flying Points", value=True)
|
| 446 |
|
| 447 |
with gr.Accordion("Optional Camera Intrinsics", open=False):
|
| 448 |
+
fx_org = gr.Textbox(label="fx", value="", placeholder="auto")
|
| 449 |
+
fy_org = gr.Textbox(label="fy", value="", placeholder="auto")
|
| 450 |
+
cx_org = gr.Textbox(label="cx", value="", placeholder="auto")
|
| 451 |
+
cy_org = gr.Textbox(label="cy", value="", placeholder="auto")
|
| 452 |
|
| 453 |
submit_btn = gr.Button("Run Inference", variant="primary")
|
| 454 |
|