Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-to-3d
|
| 4 |
+
---
|
| 5 |
+
# Revisiting Photometric Ambiguity for Accurate Gaussian-Splatting Surface Reconstruction
|
| 6 |
+
|
| 7 |
+
This repository provides the reconstructed meshes and resources for the paper Revisiting Photometric Ambiguity for Accurate Gaussian-Splatting Surface Reconstruction.
|
| 8 |
+
|
| 9 |
+
<!-- * [📚 Paper](https://huggingface.co/papers/2509.18090) -->
|
| 10 |
+
* [🌐 Project Page](https://fictionarry.github.io/AmbiSuR-Proj/)
|
| 11 |
+
* [💻 Code](https://github.com/Fictionarry/AmbiSuR)
|
| 12 |
+
|
| 13 |
+
## Reconstruction on Tanks and Temples and DTU Datasets
|
| 14 |
+
|
| 15 |
+
Here we provide the reconstructed meshes of the paper's experiments from GeoSVR.
|
| 16 |
+
|
| 17 |
+
You can browse all the released meshes at:
|
| 18 |
+
|
| 19 |
+
- `ambisur-<dataset>-meshes-eval/`: The meshes on DTU/TnT datasets, with strict filtering strategy for evaluation.
|
| 20 |
+
|
| 21 |
+
- `ambisur-<dataset>-meshes-vis/`: The meshes on DTU/TnT datasets, with loose filtering strategy for visualization.
|
| 22 |
+
|
| 23 |
+
Metrics shall be reproduced with the results with postfix of `-eval`.
|
| 24 |
+
|
| 25 |
+
## Download
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from huggingface_hub import snapshot_download
|
| 29 |
+
snapshot_download(repo_id="Fictionary/AmbiSuR", cache_dir='./AmbiSuR/results', local_dir ='./AmbiSuR/results')
|
| 30 |
+
```
|
| 31 |
+
or use Git to clone this repository with LFS.
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
```bibtex
|
| 35 |
+
@inproceedings{li2026ambisur,
|
| 36 |
+
title={Revisiting Photometric Ambiguity for Accurate Gaussian-Splatting Surface Reconstruction},
|
| 37 |
+
author={Li, Jiahe and Zhang, Jiawei and Bai, Xiao and Zheng, Jin and Yu, Xiaohan and Gu, Lin and Lee, Gim Hee},
|
| 38 |
+
booktitle={International Conference on Machine Learning},
|
| 39 |
+
year={2026},
|
| 40 |
+
organization={PMLR}
|
| 41 |
+
}
|
| 42 |
+
```
|