Update README.md
Browse files
README.md
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Create README.md
|
| 2 |
+
# Reconstruction on Tanks and Temples and DTU Datasets
|
| 3 |
+
|
| 4 |
+
We provide the reconstructed meshes of the paper's experiments from GeoSVR.
|
| 5 |
+
|
| 6 |
+
You can browse all the released meshes here:
|
| 7 |
+
|
| 8 |
+
- `meshes_complete/`: The complete meshes of the two datasets.
|
| 9 |
+
|
| 10 |
+
- `DTU_meshes_eval/`: The meshes on DTU datasets, with strict filtering strategy for evaluation.
|
| 11 |
+
|
| 12 |
+
- `TnT_meshes_eval/`: The meshes on TnT datasets, with strict filtering strategy for evaluation.
|
| 13 |
+
|
| 14 |
+
Metrics shall be reproduced with the results with postfix of `_eval`.
|
| 15 |
+
|
| 16 |
+
## Download
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
from huggingface_hub import snapshot_download
|
| 20 |
+
snapshot_download(repo_id="Fictionary/GeoSVR", cache_dir='./GeoSVR/results', local_dir ='./GeoSVR/results')
|
| 21 |
+
```
|
| 22 |
+
or use Git to clone this repository with LFS.
|
| 23 |
+
|
| 24 |
+
## BibTex
|
| 25 |
+
```
|
| 26 |
+
@article{li2025geosvr,
|
| 27 |
+
title={GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction},
|
| 28 |
+
author={Li, Jiahe and Zhang, Jiawei and Zhang, Youmin and Bai, Xiao and Zheng, Jin and Yu, Xiaohan and Gu, Lin},
|
| 29 |
+
journal={arXiv preprint arXiv:2509.18090},
|
| 30 |
+
year={2025}
|
| 31 |
+
}
|
| 32 |
+
```
|