Add files using upload-large-folder tool
Browse files
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
arxiv: 2311.12198
|
| 4 |
+
tags:
|
| 5 |
+
- 3d-gaussian-splatting
|
| 6 |
+
- physics-simulation
|
| 7 |
+
- 3dgs
|
| 8 |
+
- physgaussian
|
| 9 |
+
- squishy
|
| 10 |
+
pretty_name: Squishy 3DGS Assets (PhysGaussian)
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Squishy 3DGS Assets (Test)
|
| 14 |
+
|
| 15 |
+
> **Note:** These are test assets for development and evaluation of the squishy physics simulation pipeline.
|
| 16 |
+
|
| 17 |
+
Pre-trained 3D Gaussian Splatting (3DGS) scenes used by the **squishy** physics simulation project. Each `.zip` contains a full `gaussian-splatting`-format output directory (PLY point cloud at multiple iterations, cameras, images).
|
| 18 |
+
|
| 19 |
+
## Asset Origins
|
| 20 |
+
|
| 21 |
+
**All 3DGS scene assets in this repository are open-source assets from [PhysGaussian](https://github.com/XPandora/PhysGaussian)** (Xie et al., CVPR 2024), mirrored here to the Hugging Face Hub for convenient access. We did not train these — full credit goes to the PhysGaussian authors.
|
| 22 |
+
|
| 23 |
+
> **Citation:**
|
| 24 |
+
> ```bibtex
|
| 25 |
+
> @inproceedings{xie2024physgaussian,
|
| 26 |
+
> title = {PhysGaussian: Physics-Integrated 3D Gaussians for Generative Dynamics},
|
| 27 |
+
> author = {Xie, Tianyi and Zong, Zeshun and Qiu, Yuxing and Li, Xuan and Feng, Yutao and Yang, Yin and Jiang, Chenfanfu},
|
| 28 |
+
> booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 29 |
+
> year = {2024}
|
| 30 |
+
> }
|
| 31 |
+
> ```
|
| 32 |
+
>
|
| 33 |
+
> **Project page:** https://xpandora.github.io/PhysGaussian/
|
| 34 |
+
> **Paper:** https://arxiv.org/abs/2311.12198
|
| 35 |
+
> **GitHub:** https://github.com/XPandora/PhysGaussian
|
| 36 |
+
|
| 37 |
+
## Contents
|
| 38 |
+
|
| 39 |
+
| File | Asset | Description |
|
| 40 |
+
|------|-------|-------------|
|
| 41 |
+
| `bread-trained.zip` | Bread | Loaf of bread |
|
| 42 |
+
| `ficus_whitebg-trained.zip` | Ficus | Potted ficus plant |
|
| 43 |
+
| `pillow2sofa_whitebg-trained.zip` | Pillow on Sofa | Pillow resting on sofa |
|
| 44 |
+
| `plane-trained.zip` | Plane | Flat reference plane |
|
| 45 |
+
| `vasedeck_whitebg-trained.zip` | Vase on Deck | Ceramic vase on wooden deck |
|
| 46 |
+
| `wolf_whitebg-trained.zip` | Wolf Plush | Wolf stuffed animal |
|
| 47 |
+
|
| 48 |
+
## Usage with squishy
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from squishy.asset_registry import get_ply
|
| 52 |
+
|
| 53 |
+
ply_path = get_ply("bread") # extracts zip on first use
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
Assets are fetched automatically from this dataset repo via `squishy.hub` if not present locally. Set `SQUISHY_HF_DATASET_REPO=deformsuite/squishy-assets` in your `.env`.
|
| 57 |
+
|
| 58 |
+
## License
|
| 59 |
+
|
| 60 |
+
The 3DGS scene assets (bread, ficus, pillow2sofa, plane, vasedeck, wolf) are open-source assets released alongside the PhysGaussian paper (CVPR 2024). No explicit license file is present in the [PhysGaussian repository](https://github.com/XPandora/PhysGaussian); these assets are redistributed here under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) consistent with standard academic paper releases. Please cite the paper if you use these assets.
|