Add model card, pipeline tag, and links to paper and code
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pipeline_tag: image-to-3d
|
| 4 |
---
|
| 5 |
+
|
| 6 |
+
# StructSplat: Generalizable 3D Gaussian Splatting from Uncalibrated Sparse Views
|
| 7 |
+
|
| 8 |
+
This repository contains the pretrained weights for **StructSplat**, a feed-forward and generalizable 3D Gaussian reconstruction framework that operates directly on uncalibrated images without requiring camera parameters.
|
| 9 |
+
|
| 10 |
+
* **Paper:** [StructSplat: Generalizable 3D Gaussian Splatting from Uncalibrated Sparse Views](https://huggingface.co/papers/2606.28321)
|
| 11 |
+
* **Project Page:** [https://structsplat.github.io](https://structsplat.github.io)
|
| 12 |
+
* **Code:** [https://github.com/J-C-Zhao/StructSplat](https://github.com/J-C-Zhao/StructSplat)
|
| 13 |
+
|
| 14 |
+
## Installation & Evaluation
|
| 15 |
+
|
| 16 |
+
To set up the environment and run training or evaluation, please refer to the instructions in the [GitHub Repository](https://github.com/J-C-Zhao/StructSplat).
|
| 17 |
+
|
| 18 |
+
### Setup Environment
|
| 19 |
+
|
| 20 |
+
```bash
|
| 21 |
+
conda create -n structsplat python=3.10.19
|
| 22 |
+
conda activate structsplat
|
| 23 |
+
pip install torch==2.4.0 torchvision==0.19.0 -i https://download.pytorch.org/whl/cu118
|
| 24 |
+
pip install -r requirements.txt
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
### Evaluation
|
| 28 |
+
|
| 29 |
+
Run the following command to evaluate the model:
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
python evaluation.py -c config/dl3dv.yaml
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
## Citation
|
| 36 |
+
|
| 37 |
+
If you find this work useful, please cite the paper:
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@inproceedings{zhao2026structsplat,
|
| 41 |
+
title={StructSplat: Generalizable 3D Gaussian Splatting from Uncalibrated Sparse Views},
|
| 42 |
+
author={Zhao, Jia-Chen and Chen, Beiqi and Chen, Xinyang and Wang, Guangcong and Nie, Liqing},
|
| 43 |
+
booktitle={European Conference on Computer Vision},
|
| 44 |
+
year={2026}
|
| 45 |
+
}
|
| 46 |
+
```
|