Dataset Viewer
Auto-converted to Parquet
Search is not available for this dataset
video
video
End of preview. Expand in Data Studio
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

Processed Episodes Gestures Dataset

This dataset contains processed gesture episodes with multi-camera video data and metadata from the GigaHands dataset.

Dataset Structure

The dataset contains 16 episodes (p005-gopro-034 through p005-gopro-049), each with:

  • Multi-camera video recordings: Up to 51 cameras per episode in MP4 format
  • Camera calibration data: Intrinsics and extrinsics matrices for each camera
  • Episode metadata: Timing information, scene names, and technical parameters
  • Additional processed data: Extras numpy arrays with supplementary information

Directory Structure

processed-episodes-gestures/
β”œβ”€β”€ p005-gopro-034/
β”‚   β”œβ”€β”€ metadata.json          # Episode metadata and camera parameters
β”‚   β”œβ”€β”€ extras.npy            # Additional processed data
β”‚   β”œβ”€β”€ cam_0/
β”‚   β”‚   └── rgb/
β”‚   β”‚       └── video.mp4     # Camera 0 video recording
β”‚   β”œβ”€β”€ cam_1/
β”‚   β”‚   └── rgb/
β”‚   β”‚       └── video.mp4     # Camera 1 video recording
β”‚   └── ... (up to cam_50)
β”œβ”€β”€ p005-gopro-035/
β”‚   └── ... (same structure)
└── ... (through p005-gopro-049)

Metadata Format

Each episode's metadata.json contains:

  • n_cams: Number of cameras (typically 51)
  • n_steps: Number of time steps in the episode
  • scene_name: Identifier for the scene
  • video_format: Format of video files (jpg/mp4)
  • Camera-specific data for each camera:
    • extrinsics: 4x4 transformation matrix
    • intrinsics: 3x3 camera intrinsic matrix
    • resolution: [width, height] of the camera

Usage

You can load this dataset using the Hugging Face datasets library:

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("LocalWorldModels/processed-episodes-gestures")

# Access episode data
for episode in dataset:
    print(f"Episode: {episode['episode_name']}")
    print(f"Cameras: {episode['n_cams']}")
    print(f"Steps: {episode['n_steps']}")

Citation

If you use this dataset, please cite the original GigaHands work and this processed version.

License

Please refer to the original GigaHands dataset license terms.

Downloads last month
130