ritianyu commited on
Commit
8a982e6
·
1 Parent(s): 5a5db17

add final version

Browse files
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.Number(label="fx", value=None)
449
- fy_org = gr.Number(label="fy", value=None)
450
- cx_org = gr.Number(label="cx", value=None)
451
- cy_org = gr.Number(label="cy", value=None)
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