Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

egocentric具身学习embodied learning

Open-AoE: An Open Egocentric Manipulation Dataset and Toolchain for Embodied Learning

Egocentric videos of human manipulation provide scalable supervision for embodied intelligence, yet existing resources rarely combine low-cost continuous capture, manipulation-level structured annotations, and reusable tools for robot learning. We present Open-AoE, an open, community-oriented egocentric manipulation dataset and toolchain spanning the full pipeline from smartphone capture to model training. Its first release contains approximately 2,000 hours of manipulation video collected in natural environments by 500+ contributors using 400+ smartphones. The dataset provides text annotations, MANO-based hand poses, camera trajectories, and temporally localized atomic actions. Open-AoE further includes a data processing pipeline that transforms raw recordings into structured samples through temporal action segmentation, semantic annotation, hand reconstruction, and camera trajectory reconstruction. Meanwhile, we provide a separate downstream toolchain supports visualization, cross-embodiment retargeting, model-specific data conversion, and training recipes for VLA policies, WAMs, and World Models. By integrating scalable capture, structured processing, and downstream adaptation, Open-AoE reduces the barriers to both data contribution and reuse, providing practical open infrastructure for embodied model training, human-to-robot transfer, and world modeling.

Zishuo Li, Bowen Yang, Changtao Miao, Kai Zhu, Hao Chen, Qingze Guan, Zhengxing Wu, Wanke Zhan, Yang Sun, Zhiyi Huang, Zitong Shan, Zhenchao Jin, Jiadong Hong, Taowen Wang, Yushi Feng, You Liu, Yibo Wang, Yifan Yang, Zhaowen Zhou, Man Luo, Hao Cheng, Bo Zhang, Jianshu Li, Jiansheng Cai, Guocai Yao, Jize Zhang, Chenhao Lin, Renjing Xu, Lequan Yu, Chao Shen, Chunhua Shen, Zhe LiJuly 15, 20266 min read
中文
Zishuo Li, Bowen Yang, Changtao Miao, et al. (Ant Group · ZJU · HKU · HKUST(GZ) · NUS · BAAI · XJTU)
arXiv:2607.14183 · GitHub · HuggingFace

One-Sentence Summary

Open-AoE is an open, community-oriented egocentric manipulation dataset and toolchain spanning the full pipeline from smartphone capture to model training. Its first release contains ~2,000 hours of manipulation video collected by 500+ contributors using 400+ smartphones in natural environments, with text annotations, MANO-based hand poses, camera trajectories, and temporally localized atomic actions. The toolchain supports visualization, cross-embodiment retargeting, model-specific data conversion, and training recipes for VLA policies, WAMs, and World Models.

Figure 1. Open-AoE overview: smartphone capture, structured processing, downstream robot learning

Figure 1 — Open-AoE overview. Independent modules for smartphone capture, structured data processing, and downstream robot learning, supporting 2,000 hours, 500+ contributors, 400+ device models, 400+ scenes, 8,000+ tasks.

1. Background & Motivation

Embodied foundation models are increasingly constrained by real-world interaction data scale and quality. Unlike language models learning from internet text, robot learning requires physical demonstrations capturing how humans perceive scenes, move hands, contact objects, and complete temporally extended tasks. Such data must be large, diverse, and structured in geometry, time, and semantics.

Egocentric video is a natural scalable modality: recording from the actor's viewpoint captures hands, objects, scenes, and action progress in one visual stream. It's closer to robot execution's perceptual structure than third-person video, and collectable more naturally and cheaply than teleoperation.

Existing datasets each have shortcomings:

DatasetHoursHand PoseLanguageCamera Traj.DevicesRetargetTraining
Ego4D3,6707 cameras
EPIC-KITCHENS1002 models
EgoDex8291 model
EgoLive1,6801 custom
EgoScale20,854Mixed
Open-AoE2,000✓ MANO400+

Open-AoE is the only dataset combining low-cost continuous capture, manipulation-level structured annotations, cross-embodiment retargeting, and downstream training recipes.

2. Core Method

Figure 2. Data processing pipeline overview

Figure 2 — Data processing pipeline: from raw smartphone recordings to structured samples through temporal action segmentation, semantic annotation, hand reconstruction, and camera trajectory reconstruction.

2.1 Smartphone Capture

500+ contributors, 400+ smartphone models, natural environments. Kitchens (24.8%), tabletop/indoor (23.3%), offices (17.8%), bedrooms (9.1%), plus living rooms, workshops, outdoors. The 100-hour random sample contains 32,407 action descriptions, 175 verbs, 8,030 object strings, 135 scene labels. Long-tailed contributor distribution: median 2.6 min/ID, top-10 only 13.7%.

Figure 3. Collection, sensor, and semantic diversity

Figure 3 — Collection, sensor, and semantic diversity in a 100-hour random sample. Nested donut: phone brand/model composition. Center: collection context and contributor coverage. Word clouds: action verbs, objects, task language.

2.2 Structured Data Processing

Figure 4. Data processing modules

Figure 4 — Structured data processing modules: transforming raw recordings into aligned annotated samples.

Four-step pipeline:

  • Temporal action segmentation: 99.99% temporal coverage, mean segment 9.64s, density 13.97 segments/min.
  • Semantic annotation: natural-language action descriptions, object/scene labels.
  • Hand reconstruction: MANO-based dual-hand 55D params, concatenated as 110D: $2\times[\mathrm{valid}(1)+\mathrm{wrist\ trans}(3)+\mathrm{wrist\ axis\text{-}angle}(3)+\mathrm{velocity}(3)+\mathrm{MANO\ pose}(45)]$.
  • Camera trajectory reconstruction: SLAM-estimated camera poses synchronized with hand motion.

2.3 Downstream Toolchain: AoE-Training-Ready

Figure 5. AoE-Training-Ready representation spectrum and downstream connections

Figure 5 — AoE-Training-Ready: projecting synchronized segments into action representations with different supervision densities, connecting to VLA policies, World Action Models, and World Models.

InterfaceDimFrame/UnitsDownstream
110D dense MANO$2\times[1+3+3+3+45]$Camera frame; m, rad, m/sLeRobot, WAM recipes
48D wrist-fingertip$2\times[3+6+15]$SLAM world; m, rot6DH-RDT adapter
62D Sharpa$L/R\ \mathrm{EEF}(9)+L/R\ \mathrm{joints}(22)$World frame; m, radGR00T N1.7 adapter
20D GR00T gripper$2\times[9+1]$World frame + grip [0,1]Low-DoF GR00T N1.7
22D state / 20-26D ego$2\times[3+6+1]+2$ validCamera frame + deltaSmolVLA, iVideoGPT, LAOM

Routes: policy learning & cross-embodiment (VITRA, H-RDT, GR00T, SmolVLA, $\pi_{0.5}$, ACT, DP) and world-action & action-conditioned video (DreamZero, Ctrl-World, iVideoGPT).

flowchart TB
    subgraph Capture["Smartphone Capture"]
        A[500+ contributors
400+ phone models] --> B[2000h raw video] end subgraph Process["Structured Processing"] B --> C[Temporal Action Segmentation
99.99% coverage] B --> D[Semantic Annotation
32K action desc] B --> E[Hand Reconstruction
MANO 110D] B --> F[Camera Trajectory
SLAM] C & D & E & F --> G[Aligned Structured Samples] end subgraph Downstream["AoE-Training-Ready"] G --> H1[VLA Policies
GR00T, SmolVLA, pi0.5] G --> H2[World Action Models
DreamZero, Ctrl-World] G --> H3[World Models
iVideoGPT, LAOM] end style G fill:#e0e7ff,stroke:#2563eb style E fill:#fef3c7,stroke:#d97706 style H1 fill:#dcfce7,stroke:#16a34a

3. Experimental Results

3.1 Annotation Consistency

Visual-language evaluator scores each sampled frame $a_{q,t} \in [1,5]$. Sequence-macro score:

$$S_{\mathrm{macro}} = \frac{1}{Q}\sum_{q=1}^{Q}\left(\frac{1}{T_q}\sum_{t=1}^{T_q} a_{q,t}\right)$$

DatasetMacro Score (/5)≥4 Ratio95% CI
Open-AoE4.58385.4%[4.557, 4.608]
OpenEgo3.029
EgoDex2.916
EgoXtreme2.015

3.2 Training-Window Retention & Multimodal Completeness

Figure 9. Training-sample yield and multimodal supervision availability

Figure 9 — Training-sample yield and multimodal supervision availability across datasets: (a) candidate windows/hour and retention; (b) native hand-signal availability; (c) sequence-level availability of action annotations, bounding boxes, confidence, hand pose, camera pose.

Candidate windows with $h=2$s, $f=2$s, $\Delta=2$s:

$$N_q = \max\!\left(0,\, \left\lfloor\frac{L_q - h - f}{\Delta}\right\rfloor + 1\right), \quad \eta_{\mathrm{window}} = \frac{Y_{\mathrm{window}}}{3600/\Delta}$$

Open-AoE yields ~1,760 windows/hour, 97.8% retention. Hand signal: 98.93% at least one hand valid, 98.02% both valid. Only release with all five supervision modalities at near-universal coverage.

4. Main Contributions

  • Low-cost large-scale community collection: 2000h, 500+ contributors, 400+ phone models — broadest consumer-phone device coverage for egocentric manipulation.
  • Complete structured annotations: MANO hand pose + text + camera trajectory + temporal atomic actions, 99.99% temporal coverage, 4.583/5 consistency far exceeding peers.
  • Cross-embodiment retargeting toolchain: Multi-interface action representations (110D/48D/62D/20D/22D) adapting to VLA/WAM/World Model full spectrum.
  • Open ecosystem positioning: Not a static package but a community co-developed infrastructure for data, tools, and models.

5.

类别概率归一化

$$ p_{s,j}=\frac{\lambda_{s,j}}{\sum_{r}\lambda_{s,r}} $$

有效响应度

$$ R_{\mathrm{eff}}^{(s)}=\exp\!\left(-\sum_{j}p_{s,j}\log p_{s,j}\right) $$

kNN纯度度量

$$ M_{\mathrm{kNN}}^{(s)}=1-\frac{1}{N_{s}}\sum_{i:y_{i}=s}\frac{1}{k}\sum_{j\in\mathcal{N}_{k}(i)}\mathbf{1}\!\left[y_{j}=s\right] $$

Limitations & Future Work

Analysis:

Open-AoE's core value is connecting low-cost smartphone capture to downstream model training. Its 2000 hours, while less than EgoScale's 20,854, is unique in annotation completeness (MANO + camera trajectory + atomic actions) and toolchain usability (retargeting + training recipes). Camera-domain diversity (400+ models, multimodal FOV) provides natural sensor-domain randomization that may improve robustness to unseen cameras — but the paper honestly notes downstream benefit remains a training-side hypothesis, not a verified conclusion.

Limitations: no robot joint labels (cross-embodiment transfer relies on retargeting); evaluation is data-quality audit not downstream task benchmarks; 2000h is large but smaller than EgoScale. Future: community scaling to 10K+ hours, direct robot joint annotations, systematic downstream benchmarks.

6. Conclusion

Open-AoE is an open data infrastructure coupling ~2,000 hours of real-world egocentric manipulation data with a complete path from data to models. On the production side, the capture and processing pipeline turns raw smartphone video into structured samples aligned across vision, language, hand motion, camera trajectories, and action boundaries. On the consumption side, the open-source toolchain supports visualization, 4D reconstruction, cross-embodiment retargeting, and training representations for VLA policies, World Action Models, and World Models. Its broad coverage of scenes, actions, objects, participants, device models, and fields of view connects low-cost real-world collection with multiple embodied-learning paradigms.

Open-AoE aims to be the lowest-barrier egocentric data infrastructure for embodied intelligence — making egocentric data easy for anyone to collect and use, so that data is no longer the bottleneck for embodied foundation models.

Collect 2000 hours of manipulation data with 400 phones — make egocentric data the public infrastructure for embodied intelligence.

Related Papers

Reinforcing Egocentric Spatial Perception in Multimodal Large Language Models via Ego Scene Augmentation

Reinforcing Egocentric Spatial Perception in Multimodal Large Language Models via Ego Scene Augmentation

Egocentric Visual Question Answering (VQA) has attracted widespread attention as an important task for enabling Multimodal Large Language Models (MLLMs) to interact with the real world. However, existing MLLMs struggle to perform effective spatial reasoning in complex egocentric scenes due to their limited spatial perception capabilities. To this end, we introduce Ego Scene Augmentation (ESA), an egocentric spatial perception framework, which actively enhances the spatial perception capabilities from the egocentric perspective, powered by the proposed Ego-element Graph. Our core insight is leveraging the Ego-element Graph as an intermediary representation to augment the egocentric spatial perception of MLLMs via visual foundational models. Specifically, we 1) construct the Ego-element Graph, which encapsulates and integrates egocentric spatial features enabled by visual foundational models; 2) enhance the spatial perception capabilities of MLLMs via the Ego-element Graph for ego-perspective scenes. Our proposed ESA framework presents significant performance improvement on the EgoTextVQA benchmark. We achieve an 8.14% gain on the indoor setting and an 8.72% gain on the outdoor setting. Furthermore, our ESA shows the most impressive performance improvement in the shopping subset of the indoor setting. The project code is publicly available.

MLLM第一人称egocentricJul 16, 2026
Let the Body Follow: Coupled Egocentric Control for Whole-Body Robot Teleoperation

Let the Body Follow: Coupled Egocentric Control for Whole-Body Robot Teleoperation

Whole-body teleoperation requires users to coordinate perception, manipulation, posture, and mobility across multiple robot components. This coordination is difficult because users must simultaneously control the robot's head, arms, torso, and base while maintaining task awareness and avoiding kinematic or environmental constraints. In this paper, we propose coupled egocentric control, a body-following teleoperation approach in which the robot's torso and base automatically respond to the operator's head and arm motions. Rather than requiring explicit touchpad commands for every torso or base adjustment, the system lets users focus on gaze and hand control: head pitch adjusts torso height, head yaw drives base rotation, end-effector height adjusts torso motion, and end-effector workspace boundaries trigger base translation. We evaluate this approach in a user study on whole-body teleoperation of a TIAGo mobile manipulator for home-care-inspired tasks. Compared with a baseline hybrid interface, coupled egocentric control improves object manipulation efficiency, reduces button-based control effort and arm singularities, lowers mental demand and overall workload, and increases ease of use, ease of learning, confidence, and user preference for torso and base control.

遥操作teleoperation全身控制Jul 17, 2026
Exo2EgoPose: Leveraging Exocentric Demonstrations for Vision-Language guided Egocentric 3D Hand Pose Forecasting

Exo2EgoPose: Leveraging Exocentric Demonstrations for Vision-Language guided Egocentric 3D Hand Pose Forecasting

Perceiving multimodal cues and forecasting fine-grained actions from an egocentric (Ego) perspective is vital for applications like robot manipulation. However, previous studies either rely mainly on under-informed visual inputs to predict coarse human motions or follow the VRM/VLA paradigm, which suffers from insufficient robot data and the gap between human and robot embodiments. We observe that 3D hand pose naturally serves as a unified representation to bridge human-robot actions. Hence, we investigate an under-explored Vision-Language guided Egocentric 3D Hand Pose Forecasting (VL-EHPF) task, which aims to predict future Ego 3D hand poses from visual observations, a language instruction, and pose states. To overcome the limited field-of-view and highly dynamic motions in the Ego view, we propose a framework dubbed Exo2EgoPose, which innovatively leverages holistic and stable exocentric (Exo) demonstrations as guidance to compensate for partial and dynamic Ego-view cues. Specifically, we introduce a Dual-level Exocentric Reconstruction Module (DERM), which incorporates the paired Exo videos as supervision to reconstruct their video-level and chunked frame-level representations, thereby modeling spatial contexts and temporal dynamics. Then, the Global-to-Local Modulation Module (GLMM) utilizes the reconstructed hierarchical Exo representations for progressive feature refinement via attention mechanisms and adaptive modulation, enabling comprehensive Exo guidance for accurate Ego hand pose forecasting. Extensive experiments on \textit{AssemblyHands}, \textit{Ego-Exo4D}, and our newly constructed \textit{EgoMe-pose} benchmarks show the superiority of our method, which outperforms state-of-the-art methods by a large margin. Moreover, it demonstrates an effective human-to-robot transfer capability and yields improvements on the \textit{CALVIN} dataset. Code will be released.

第一人称egocentric手部姿态Jul 17, 2026
EgoExoMoCap: Distributed Ego-Exo Human Motion Capture

EgoExoMoCap: Distributed Ego-Exo Human Motion Capture

Human motion capture from head-mounted devices (HMDs) offers a scalable way to acquire real-world human motion and interaction data, which is crucial for applications in embodied AI and VR/AR. Existing approaches focus on either egocentric body tracking, estimating the motion of the subject wearing the device, or exocentric tracking, capturing the movements of people in the wearer's surroundings. So far, these two paradigms have largely been explored in isolation. In this paper, we propose a novel distributed framework that jointly leverages ego- and exocentric multi-modal signals for human motion estimation from HMDs. Unlike traditional motion capture systems requiring bulky multi-camera setups or obtrusive mocap suits, our approach, EgoExoMoCap, is as simple as two (or more) people, each wearing a pair of smart glasses. The method leverages head (plus potentially wrist) tracking signals for accurate estimation of global motion in the 3D world and combines context-aware image features based on DINOv3 to achieve robustness in the presence of noise and occlusions. Extensive experiments on two in-the-wild datasets show that our approach can robustly reconstruct motion even in challenging scenarios.

动捕motion capture第一人称Jul 17, 2026