pretty_name: Lance Captured Trajectory Dataset
language:
- en
tags:
- lance
- trajectory
- mano
- robotics
- motion-capture
task_categories:
- robotics
- time-series-forecasting
lance_dataset
This repository stores Lance datasets.
The current dataset is organized as Dexcanvas.lance/. It contains Lance data fragments, version manifests, and transaction metadata.
Dataset Structure
Dexcanvas.lance represents a captured trajectory dataset. Each row corresponds to one complete captured trajectory. The field definitions are based on captured_data_schema.yaml.
Key conventions:
trajectory_metadata.total_framesdefines the sequence lengthT- All sequence fields must have the same
Tdimension - All rotations are represented in axis-angle format
- All positions are measured in meters
MANO Trajectory Fields
MANO-related data is split into metadata fields and time-series fields.
Metadata
The following fields in trajectory_metadata describe the hand layout:
hand_names: variable-length list of hand namesmano_hand_shapes: MANO shape parameters for each hand
Index mapping:
hand_names[i]corresponds tohands[i]mano_hand_shapes[i]corresponds tohands[i]
Time-Series Data
hands[] is a variable-length array. Each element represents one hand over the full trajectory.
mano_global_pos(T, 3)
Global hand position in meters.mano_global_rot_aa(T, 3)
Global hand rotation in axis-angle format.mano_hand_pose(T, 48)
MANO hand pose parameters.- 45 dimensions for 15 joint rotations
- 3 dimensions for the wrist
mano_joint_pos(T, 21, 3)
3D positions of 21 MANO hand joints.urdf_dof(T, 26)
URDF degree-of-freedom representation.- 20 finger DOFs
- 6 wrist DOFs
In short:
mano_global_posandmano_global_rot_aadescribe the global hand posemano_hand_posedescribes MANO finger and wrist pose parametersmano_joint_posprovides the derived 3D hand joint positionsurdf_dofprovides a robot/control-oriented representation
Object Fields
Object-related data is stored in trajectory_metadata.object_names and objects[].
Metadata
object_names: variable-length list of object names
Index mapping:
object_names[i]corresponds toobjects[i]
Time-Series Data
objects[] is a variable-length array. Each element represents one object over the full trajectory.
rot_aa(T, 3)
Object rotation in axis-angle format.pos(T, 3)
Object position in meters.
Therefore, objects[i] stores the full pose trajectory of the i-th object across all T frames.
Other Common Fields
index.uuid: unique trajectory identifierindex.seed_uuid: same asuuidfor captured data; source trajectory ID for generated dataindex.file_uuid: sourcesession_data_files.file_uuidindex.capMachine: capture machine identifierindex.operator: operator who captured or generated the dataindex.scene: scene identifierindex.is_generated: whether the row is generated datatimestamp: per-frame timestampsatomic_actions: atomic action intervals, such as grasp or release
Directory Layout
Dexcanvas.lance/: Lance dataset rootDexcanvas.lance/data/: physical Lance data fragmentsDexcanvas.lance/_versions/: dataset version manifestsDexcanvas.lance/_transactions/: transaction recordsDexcanvas.lance/_latest.manifest: latest dataset manifestcaptured_data_schema.yaml: YAML schema converted from the upstream JSONC schema
Notes
When adding new fields, keep them consistent with captured_data_schema.yaml, especially:
- The shared
Tdimension for sequence fields - The index mapping between
hands[]andtrajectory_metadata.hand_names - The index mapping between
objects[]andtrajectory_metadata.object_names - Axis-angle rotation representation