qq456cvb/img2cad
Image-to-3D β’ Updated β’ 1
text stringlengths 3 5 |
|---|
38264 |
38265 |
38269 |
38270 |
38315 |
38333 |
38347 |
38348 |
38356 |
38377 |
38378 |
38387 |
38399 |
38407 |
38434 |
38439 |
38445 |
38477 |
38482 |
38489 |
38542 |
38568 |
38585 |
38623 |
38629 |
38679 |
38680 |
38690 |
38799 |
38889 |
38898 |
38899 |
38931 |
38943 |
38964 |
38981 |
39057 |
39068 |
39076 |
39081 |
39115 |
39135 |
39136 |
39140 |
39150 |
39153 |
39156 |
39158 |
39161 |
39167 |
39212 |
39277 |
39310 |
39323 |
39336 |
39340 |
39342 |
39352 |
39389 |
39478 |
39539 |
39544 |
39566 |
39568 |
39579 |
39620 |
39627 |
39631 |
39655 |
39670 |
39813 |
39815 |
39927 |
39954 |
39963 |
39966 |
40019 |
40051 |
40053 |
40057 |
40058 |
40065 |
40095 |
40105 |
40114 |
40129 |
40139 |
40145 |
40149 |
40152 |
40163 |
40180 |
40209 |
40234 |
40253 |
40327 |
40333 |
40365 |
40367 |
40378 |
This dataset contains annotated CAD models with semantic part information for training CAD reverse engineering models.
The Img2CAD Annotated CAD Dataset is a comprehensive collection of 3D CAD models with:
img2cad-dataset/
βββ raw_annotated/ # Raw CAD data in h5 format
β βββ chair/
β β βββ {id}/
β β β βββ cad.h5 # CAD commands with part names
β β β βββ raw.obj # Raw mesh (optional)
β β βββ ...
β βββ table/
β βββ storagefurniture/
βββ blender_renderings/ # Rendered images (.png)
β βββ {id}.png
β βββ ...
βββ llamaft_gt_labels/ # Ground truth labels for LlamaFT
β βββ chair/
β β βββ {id}.txt
β β βββ ...
β βββ table/
β βββ storagefurniture/
βββ splits/ # Train/test splits
β βββ chair_train_ids.txt
β βββ chair_test_ids.txt
β βββ ...
βββ sym_labels/ # Symmetry labels (1=rotational, 2=reflection, 3=none)
βββ trassembler_data/ # Preprocessed pickle files
β βββ chair_pkl/
β βββ table_pkl/
β βββ storagefurniture_pkl/
βββ shapenet_partseg/ # Part segmentation annotations (unified txt format)
β βββ synsetoffset2category.txt
β βββ 03001627/ # Chair annotations
β βββ 04379243/ # Table annotations
β βββ storagefurniture/ # Storagefurniture annotations
βββ anno_id2model_id_*.json # PartNet to ShapeNet ID mappings
βββ *.json # Part name mappings and statistics
Each cad.h5 file contains:
{part_name}_axis_aligned_bbox)from huggingface_hub import hf_hub_download, snapshot_download
# Download specific files
cad_path = hf_hub_download(
repo_id="qq456cvb/img2cad-dataset",
filename="raw_annotated/chair/12345/cad.h5",
repo_type="dataset"
)
# Or download entire directories
data_dir = snapshot_download(
repo_id="qq456cvb/img2cad-dataset",
repo_type="dataset",
allow_patterns=["splits/*", "*.json"]
)
# Load with h5py
import h5py
h5 = h5py.File(cad_path, 'r')
part_names = [n for n in h5 if n != 'vec' and '_bbox' not in n]
Img2CAD: Reverse Engineering 3D CAD Models from Images through VLM-Assisted Conditional Factorization
@inproceedings{you2025img2cad,
title={Img2cad: Reverse engineering 3d cad models from images through vlm-assisted conditional factorization},
author={You, Yang and Uy, Mikaela Angelina and Han, Jiaqi and Thomas, Rahul and Zhang, Haotong and Du, Yi and Chen, Hansheng and Engelmann, Francis and You, Suya and Guibas, Leonidas},
booktitle={Proceedings of the SIGGRAPH Asia 2025 Conference Papers},
pages={1--12},
year={2025}
}
This dataset is released under the MIT License.
This dataset builds upon the PartNet and ShapeNet datasets. We thank the original authors for their contributions.