Hyeonwoo Kim commited on
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ComAsset
|
| 2 |
+
|
| 3 |
+
ComAsset is the dataset for paper "Beyond the Contact: Discovering Comprehensive Affordance for 3D Objects from Pre-trained 2D Diffusion Models".
|
| 4 |
+
|
| 5 |
+
The dataset consists of total 93 object meshes, collected from [SketchFab](https://sketchfab.com/).
|
| 6 |
+
|
| 7 |
+
All of the meshes are converted to `.obj` format with image texture files. We manually canonicalize the objects in terms of location, orientation and scale.
|
| 8 |
+
|
| 9 |
+
The format of the dataset is as follows:
|
| 10 |
+
|
| 11 |
+
```
|
| 12 |
+
ComAsset
|
| 13 |
+
├── data
|
| 14 |
+
│ ├── accordion # object category
|
| 15 |
+
│ │ └── wx75e99elm1yhyfxz1efg60luadp95sl # object id
|
| 16 |
+
│ │ ├── images # folder for texture files
|
| 17 |
+
│ │ ├── model.obj
|
| 18 |
+
│ │ └── model.mtl
|
| 19 |
+
│ ├── axe
|
| 20 |
+
│ ├── ...
|
| 21 |
+
│ └── wine glass
|
| 22 |
+
└── categories.json
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
In `categories.json`, you can check the existing object categories, along with the original data URL and the license information.
|
| 26 |
+
|
| 27 |
+
# Citation
|
| 28 |
+
|
| 29 |
+
To cite ComA, please use the following BibTeX entry:
|
| 30 |
+
|
| 31 |
+
```bibtex
|
| 32 |
+
@inproceedings{ComA,
|
| 33 |
+
title="Beyond the Contact: Discovering Comprehensive Affordance for 3D Objects from Pre-trained 2D Diffusion Models",
|
| 34 |
+
author="Kim, Hyeonwoo and Han, Sookwan and Kwon, Patrick and Joo, Hanbyul",
|
| 35 |
+
booktitle=ECCV,
|
| 36 |
+
year={2024}
|
| 37 |
+
}
|
| 38 |
+
```
|