Views
No views yet
Learning to Detect Mirrors from Videos via Dual Correspondences
Jiaying Lin*, Xin Tan*, Rynson W. H. Lau
CVPR 2023
Paper · Project Page · Dataset (VMD-D)
| File | Description |
|---|---|
best.pth | Best checkpoint (714 MB), saved as {'model': state_dict, ...} |
results/results.zip | VMD-Net predictions on the VMD-D test set |
results/baseline_results.zip | Baseline method predictions for comparison |
1import torch
2from networks.VMD_network import VMD_Network # from the code release
3
4model = VMD_Network()
5checkpoint = torch.load("best.pth", map_location="cpu")
6model.load_state_dict(checkpoint["model"])
7model.eval()huggingface-cli download garrying/VMD-Net best.pth --local-dir ./weights1@InProceedings{Lin_2023_CVPR,
2 author = {Lin, Jiaying and Tan, Xin and Lau, Rynson W.H.},
3 title = {Learning To Detect Mirrors From Videos via Dual Correspondences},
4 booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
5 month = {June},
6 year = {2023},
7 pages = {9109-9118}
8}