--- license: cc-by-4.0 name: DIEPF 2026 – Depth–Image + Extrusion + (Robot) Pose Fusion Dataset language: - en task_categories: - robotics - image-classification - time-series-forecasting tags: - construction-robotics - additive-manufacturing - rgbd - sensor-fusion - kuka size_categories: - 1B Archive size scales with recording duration and camera FPS. Larger sessions typically contain longer continuous runs. ## Data format notes ### Image rotation The RGB-D camera is mounted eye-in-hand; images may be **rotated (e.g., 180°)** before saving to match a consistent orientation. Applied rotation should be documented in per-session metadata. ## Example: download and extract one session (Python) ```python from huggingface_hub import hf_hub_download import tarfile from pathlib import Path repo_id = "ICoM-RWTH/DIEPF_2026" filename = "recordings/260109_Recording_001.tar" tar_path = hf_hub_download(repo_id=repo_id, repo_type="dataset", filename=filename) out_dir = Path("extracted/260109_Recording_001") out_dir.mkdir(parents=True, exist_ok=True) with tarfile.open(tar_path, "r") as tar: tar.extractall(out_dir) print("Extracted to:", out_dir) ``` ### Add this (citation) ```markdown ## Citation ```bibtex @dataset{diepf2026, title = {DIEPF 2026: Depth--Image + Extrusion + Robot Pose Fusion Dataset for Large-Scale Additive Manufacturing}, author = {Benz, Hendrik and Nguyen Trong, The Vinh}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/ICoM-RWTH/DIEPF_2026} } ```