Commit ·
8598020
1
Parent(s): 78ede8a
Add model card and pipeline tag (#1)
Browse files- Add model card and pipeline tag (555209148614ff29a85091b59892b99c11d9f84f)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-to-3d
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# 3D-Fixer: Coarse-to-Fine In-place Completion for 3D Scenes from a Single Image
|
| 7 |
+
|
| 8 |
+
[**Project Page**](https://zx-yin.github.io/3dfixer/) | [**Paper**](https://huggingface.co/papers/2604.04406) | [**GitHub**](https://github.com/HorizonRobotics/3D-Fixer)
|
| 9 |
+
|
| 10 |
+
3D-Fixer introduces a novel **In-Place Completion** paradigm to create high-fidelity 3D scenes from a single image. It extends 3D object generative priors to generate complete 3D assets conditioned on partially visible point clouds, using fragmented geometry as a spatial anchor to preserve layout fidelity without the need for time-consuming pose optimization.
|
| 11 |
+
|
| 12 |
+
## Sample Usage
|
| 13 |
+
|
| 14 |
+
The model can be loaded using the following code snippet from the [official repository](https://github.com/HorizonRobotics/3D-Fixer):
|
| 15 |
+
|
| 16 |
+
```python
|
| 17 |
+
# Load the pretrained model
|
| 18 |
+
ThreeDFixerPipeline.from_pretrained("HorizonRobotics/3D-Fixer")
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
## Dataset
|
| 22 |
+
|
| 23 |
+
The model was trained on **ARSG-110K**, a large-scale scene-level dataset comprising over 110K diverse scenes and 3M annotated images with high-fidelity 3D ground truth.
|
| 24 |
+
|
| 25 |
+
## Citation
|
| 26 |
+
|
| 27 |
+
```bibtex
|
| 28 |
+
@inproceedings{yin2026tdfixer,
|
| 29 |
+
title={3D-Fixer: Coarse-to-Fine In-place Completion for 3D Scenes from a Single Image},
|
| 30 |
+
author={Yin, Ze-Xin and Liu, Liu and Wang, Xinjie and Sui, Wei and Su, Zhizhong and Yang, Jian and Xie, jin},
|
| 31 |
+
booktitle={Proceedings of the Computer Vision and Pattern Recognition Conference},
|
| 32 |
+
year={2026}
|
| 33 |
+
}
|
| 34 |
+
```
|