Views
No views yet
Rich Context Aggregation with Reflection Prior for Glass Surface Detection
Jiaying Lin, Zebang He, Rynson W.H. Lau
Proceedings of CVPR 2021
Project page: https://jiaying.link/cvpr2021-gsd/
| File | Description |
|---|---|
GSD.pth | GlassNet weights trained on the GSD training split |
1import torch
2from huggingface_hub import hf_hub_download
3from model import GlassNet
4
5ckpt = hf_hub_download("garrying/GSD-GlassNet", "GSD.pth")
6net = GlassNet()
7net.load_state_dict(torch.load(ckpt, map_location="cpu"))
8net.eval()infer.py in the original release.1@inproceedings{GSD:2021,
2 title = {Rich Context Aggregation with Reflection Prior for Glass Surface Detection},
3 author = {Lin, Jiaying and He, Zebang and Lau, Rynson W.H.},
4 booktitle = {Proc. CVPR},
5 year = {2021}
6}