Views
No views yet
1@misc{mast3r_arxiv24,
2 title={Grounding Image Matching in 3D with MASt3R},
3 author={Vincent Leroy and Yohann Cabon and Jerome Revaud},
4 year={2024},
5 eprint={2406.09756},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV}
8}
9
10@inproceedings{dust3r_cvpr24,
11 title={DUSt3R: Geometric 3D Vision Made Easy},
12 author={Shuzhe Wang and Vincent Leroy and Yohann Cabon and Boris Chidlovskii and Jerome Revaud},
13 booktitle = {CVPR},
14 year = {2024}
15}| Modelname | Training resolutions | Head | Encoder | Decoder |
|---|---|---|---|---|
| MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_nonmetric | 512x384, 512x336, 512x288, 512x256, 512x160 | CatMLP+DPT | ViT-L | ViT-B |
1from mast3r.model import AsymmetricMASt3R
2import torch
3
4model = AsymmetricMASt3R.from_pretrained("naver/MASt3R_ViTLarge_BaseDecoder_512_catmlpdpt_nonmetric")
5
6device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
7model.to(device)