Install
openclaw skills install hot3dHOT3D (Hand-Object 3D Dataset) by Meta Facebook - multi-view egocentric hand and object 3D tracking for Aria/Quest smart glasses. State-of-the-art multi-view...
openclaw skills install hot3dState-of-the-art multi-view 3D tracking system for egocentric hand-object interactions from Meta Facebook Research. Designed for Aria smart glasses and Quest VR headsets, HOT3D provides precise 3D world coordinates for hand joints, manipulated objects, and their interactions. The system includes visualization tools for rendering 3D overlays on video frames with joint projections, hand meshes, and object models.
Project page: https://facebookresearch.github.io/hot3d
Best for: Research-grade 3D tracking with multi-camera setups, high-precision applications, and XR device integration.
Use when you need:
vs alternatives:
21-keypoint 3D hand pose from multiple synchronized cameras:
6DOF object pose tracking:
Interaction analysis:
Rich visualization options:
# Clone repository
git clone https://github.com/facebookresearch/hot3d.git
cd hot3d
# Install dependencies
pip install -r requirements.txt
# Key: PyTorch3D, Open3D, vispy
# Download dataset (requires registration)
# https://facebookresearch.github.io/hot3d/dataset.html
# Run demo
python demo/visualize_tracking.py \
--sequence demo_sequence \
--output_dir ./visualizations
from hot3d import HOT3DTracker
import numpy as np
# Initialize tracker
tracker = HOT3DTracker()
tracker.load_sequence('path/to/sequence')
# Get frame data
frame_data = tracker.get_frame(frame_id=100)
# Access 3D hand pose
hand_pose_3d = frame_data['left_hand'] # 21x3 array
print(f"Wrist position: {hand_pose_3d[0]}") # [x, y, z]
# Access object pose
object_pose = frame_data['object_001']
position = object_pose['position'] # [x, y, z]
rotation = object_pose['rotation'] # 3x3 matrix
# Visualize
tracker.visualize_frame(
frame_id=100,
show_hands=True,
show_objects=True,
show_meshes=True,
save_path='output.png'
)
HOT3D dataset includes:
Access: https://facebookresearch.github.io/hot3d
Works with:
CC-BY-NC 4.0 (non-commercial only)