Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,7 @@ with gradio.Blocks(css=css, title=title, delete_cache=(gradio_delete_cache, grad
|
|
99 |
'and more details about the method at <a href="https://github.com/naver/mast3r">github.com/naver/mast3r</a>. '
|
100 |
'The checkpoint used in this demo is available at <a href="https://huggingface.co/naver/MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_metric">huggingface.co/naver/MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_metric</a>.</p>')
|
101 |
with gradio.Column():
|
102 |
-
inputfiles = gradio.File(file_count="multiple", file_types=
|
103 |
snapshot = gradio.Image(None, visible=False)
|
104 |
with gradio.Row():
|
105 |
matching_conf_thr = gradio.Slider(label="Matching Confidence Thr", value=2.,
|
|
|
99 |
'and more details about the method at <a href="https://github.com/naver/mast3r">github.com/naver/mast3r</a>. '
|
100 |
'The checkpoint used in this demo is available at <a href="https://huggingface.co/naver/MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_metric">huggingface.co/naver/MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_metric</a>.</p>')
|
101 |
with gradio.Column():
|
102 |
+
inputfiles = gradio.File(file_count="multiple", file_types= ['image'])
|
103 |
snapshot = gradio.Image(None, visible=False)
|
104 |
with gradio.Row():
|
105 |
matching_conf_thr = gradio.Slider(label="Matching Confidence Thr", value=2.,
|