Dataset Viewer
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 episodescene_name: Identifier for the scenevideo_format: Format of video files (jpg/mp4)- Camera-specific data for each camera:
extrinsics: 4x4 transformation matrixintrinsics: 3x3 camera intrinsic matrixresolution: [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