πŸ“Š
Dataset

Rgb D Segmentegocentricbodies

by ExtendedRealityLab hf-dataset--extendedrealitylab--rgb-d-segmentegocentricbodies
Nexus Index
42.0 Top 0%
S / A / P / R / Q Breakdown Calibration Pending

Pillar scores are computed during the next indexing cycle.

Tech Context
Vital Performance
0 DL / 30D
0.0%

The **RGB-D Segment Egocentric Bodies Dataset** is a multi-modal dataset designed for **egocentric body segmentation and depth-aware perception**. It contains synchronized **RGB images**, **real depth maps**, **segmentation masks**, and **synthetic depth data**, captured from an egocentric point of view. The dataset is intended to support research in **egocentric vision**, **XR/VR/AR**, **human–computer interaction**, and **depth-aware computer vision**. The dataset is an extension of the Ego...

Data Integrity 42 FNI Score
- Size
- Rows
Parquet Format
- Tokens
Dataset Information Summary
Entity Passport
Registry ID hf-dataset--extendedrealitylab--rgb-d-segmentegocentricbodies
Provider huggingface
πŸ“œ

Cite this dataset

Academic & Research Attribution

BibTeX
@misc{hf_dataset__extendedrealitylab__rgb_d_segmentegocentricbodies,
  author = {ExtendedRealityLab},
  title = {Rgb D Segmentegocentricbodies Dataset},
  year = {2026},
  howpublished = {\url{https://huggingface.co/datasets/ExtendedRealityLab/RGB-D-SegmentEgocentricBodies}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
ExtendedRealityLab. (2026). Rgb D Segmentegocentricbodies [Dataset]. Free2AITools. https://huggingface.co/datasets/ExtendedRealityLab/RGB-D-SegmentEgocentricBodies

πŸ”¬Technical Deep Dive

Full Specifications [+]

βš–οΈ Nexus Index V2.0

42.0
ESTIMATED IMPACT TIER
Semantic (S) 50
Authority (A) 0
Popularity (P) 0
Recency (R) 0
Quality (Q) 0

πŸ’¬ Index Insight

FNI V2.0 for Rgb D Segmentegocentricbodies: Semantic (S:50), Authority (A:0), Popularity (P:0), Recency (R:0), Quality (Q:0).

Free2AITools Nexus Index

Verification Authority

Unbiased Data Node Refresh: VFS Live
⬇️
Downloads
21,153

πŸ‘οΈ Data Preview

πŸ“Š

Row-level preview not available for this dataset.

Schema structure is shown in the Field Logic panel when available.

πŸ”— Explore Full Dataset β†—

🧬 Field Logic

🧬

Schema not yet indexed for this dataset.

Dataset Specification

annotations_creators:
- other
language:
- en
language_creators:
- other
license:
- odc-by
multilinguality:
- monolingual
pretty_name: 'RGB-D-SegmentEgocentricBodies '
size_categories:
- 1K<n<10K
source_datasets:
- original
tags:
- egocentric segmentation
- extended reality
- xr
- human-body
- mixed-reality
- avatar
task_categories:
- image-segmentation
- depth-estimation
task_ids:
- semantic-segmentation
-  features:
    - name: image
      dtype: image
    - name: depth
      dtype: image
    - name: mask
      dtype: image
    - name: synthetic_depth
      dtype: image
-splits:
    - name: train
      num_examples: 8005
    - name: validation
      num_examples: 1069

RGB-D Segment Egocentric Bodies Dataset

Overview

The RGB-D Segment Egocentric Bodies Dataset is a multi-modal dataset designed for egocentric body segmentation and depth-aware perception. It contains synchronized RGB images, real depth maps, segmentation masks, and synthetic depth data, captured from an egocentric point of view.
The dataset is intended to support research in egocentric vision, XR/VR/AR, human–computer interaction, and depth-aware computer vision.

Dataset Description

The dataset is an extension of the EgoBodies Dataset (please refer to https://arxiv.org/pdf/2207.01296 for more information), with depth frames. We provide two versions of depth: real depth images acquired with different sensors:
RealSense D435, Realsense L515. Synthetic detph were estimated using Depth-Anything by Yang et al (2024). It is composed of more than 40 different users, in wild scenarios.

Dataset Structure

RGB-D-SegmentEgocentricBodies/
β”‚
β”œβ”€β”€ train/ # ~3.11 GB
β”‚ β”œβ”€β”€ images/ # RGB frames
β”‚ β”œβ”€β”€ depths/ # Real depth maps
β”‚ β”œβ”€β”€ masks/ # Segmentation masks
β”‚ └── synthetic_depths/ # Synthetic or enhanced depth maps
β”‚
β”œβ”€β”€ val/ # ~401 MB
β”‚ β”œβ”€β”€ images/
β”‚ β”œβ”€β”€ depths/
β”‚ β”œβ”€β”€ masks/
β”‚ └── synthetic_depths/
β”‚
└── .gitattributes # Git LFS configuration

Intended Use

This dataset is suitable for:

  • Egocentric human / body-part segmentation
  • Depth-aware perception models
  • XR avatar embodiment and telepresence
  • Mixed-reality interaction research
  • Training and benchmarking RGB-D models

Acknowledgements

This dataset was created by Nokia ExtendedRealityLab and developed in the context of research on egocentric perception and immersive telepresence.
If you use this dataset in academic work, please cite the following papers:

@article{gonzalez2023full,
title={Full body video-based self-avatars for mixed reality: from e2e system to user study},
author={Gonzalez Morin, Diego and Gonzalez-Sosa, Ester and Perez, Pablo and Villegas, Alvaro},
journal={Virtual Reality},
volume={27},
number={3},
pages={2129--2147},
year={2023},
publisher={Springer}
}

@article{gonzalez2022real,
title={Real time egocentric segmentation for video-self avatar in mixed reality},
author={Gonzalez-Sosa, Ester and Gajic, Andrija and Gonzalez-Morin, Diego and Robledo, Guillermo and Perez, Pablo and Villegas, Alvaro},
journal={arXiv preprint arXiv:2207.01296},
year={2022}
}

@article{tobaruela2026egocentricrgbd,
title={RGB-D Egocentric Segmentation of Human Bodies for XR Applications},
author={Pedros-Tobaruela, Sofia and Gonzalez-Sosa, Ester and Perez, Pablo and Villegas, Alvaro},
journal={submitted}
}

Example Usage

from PIL import Image
import numpy as np
import os

def load_sample(root, split, idx): base = os.path.join(root, split) rgb = Image.open(os.path.join(base, "images", f"{idx}.png")) depth = Image.open(os.path.join(base, "depths", f"{idx}.png")) mask = Image.open(os.path.join(base, "masks", f"{idx}.png")) synth = Image.open(os.path.join(base, "synthetic_depths", f"{idx}.png")) return rgb, depth, mask, synth

Top Tier

Social Proof

HuggingFace Hub
21.2KDownloads
πŸ”„ Daily sync (03:00 UTC)

AI Summary: Based on Hugging Face metadata. Not a recommendation.

πŸ“Š FNI Methodology πŸ“š Knowledge Baseℹ️ Verify with original source

πŸ›‘οΈ Dataset Transparency Report

Verified data manifest for traceability and transparency.

100% Data Disclosure Active

πŸ†” Identity & Source

id
hf-dataset--extendedrealitylab--rgb-d-segmentegocentricbodies
source
huggingface
author
ExtendedRealityLab
tags
modality:imagearxiv:2207.01296region:us

βš™οΈ Technical Specs

architecture
null
params billions
null
context length
null

πŸ“Š Engagement & Metrics

likes
0
downloads
21,153

Free2AITools Constitutional Data Pipeline: Curated disclosure mode active. (V15.x Standard)