Views
No views yet
1@article{zhang2024monst3r,
2 author = {Zhang, Junyi and Herrmann, Charles and Hur, Junhwa and Jampani, Varun and Darrell, Trevor and Cole, Forrester and Sun, Deqing and Yang, Ming-Hsuan},
3 title = {MonST3R: A Simple Approach for Estimating Geometry in the Presence of Motion},
4 journal = {arXiv preprint arxiv:2410.03825},
5 year = {2024}
6}1from dust3r.model import AsymmetricCroCo3DStereo
2import torch
3
4model = AsymmetricCroCo3DStereo.from_pretrained("Junyi42/MonST3R_PO-TA-S-W_ViTLarge_BaseDecoder_512_dpt")
5
6device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
7model.to(device)