← Back to Skills Marketplace
fujunhy

Hot3d

by fujunhy · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ Security Clean
220
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install hot3d
Description
HOT3D (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...
README (SKILL.md)

HOT3D - Multi-View 3D Hand & Object Tracking

Overview

State-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.

When to Use This Skill

Use when you need:

  • Multi-view 3D tracking with world coordinates
  • High-precision hand pose in 3D space (millimeter accuracy)
  • Object tracking during manipulation
  • Aria/Quest integration for wearable devices
  • Research-grade tracking benchmarks
  • Hand-object interaction analysis in 3D

vs alternatives:

  • More advanced than single-view methods (hands-3d-pose)
  • Higher precision than bounding box detection (handtracking)
  • Full 3D world coordinates vs 2D projections

Core Capabilities

1. Multi-View 3D Hand Tracking

21-keypoint 3D hand pose from multiple synchronized cameras:

  • 3D world coordinates (x, y, z) for each joint
  • Joint confidence scores
  • Left/right hand identification
  • Temporal consistency across frames
  • Hand mesh reconstruction

2. Object Pose Estimation

6DOF object pose tracking:

  • 3D position and orientation (quaternion/rotation matrix)
  • Object mesh alignment
  • Tracking during manipulation
  • Multiple object support

3. Hand-Object Interaction

Interaction analysis:

  • Contact point detection
  • Grasp type classification
  • Manipulation phase detection
  • Force estimation (with sensor data)

4. Visualization Tools

Rich visualization options:

  • 3D skeleton projected to each camera view
  • Hand mesh rendering
  • Object model overlay
  • Trajectory visualization
  • Multi-view synchronized display

Quick Start

# 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

Usage Example

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'
)

Model Specs

  • Input: Multi-view RGB-D video streams (typically 3-5 cameras)
  • Output: 3D coordinates in world frame (millimeters)
  • Accuracy: ~5-10mm hand joint error
  • Frame rate: 30-60 Hz (depends on hardware)
  • Latency: \x3C100ms for real-time applications

Requirements

  • Hardware: Multi-camera setup or Aria/Quest device
  • Computation: GPU recommended (NVIDIA RTX 3080 or better)
  • Storage: Large dataset (several TB for full HOT3D)
  • Software: PyTorch, PyTorch3D, Open3D

Dataset

HOT3D dataset includes:

  • 100+ sequences of daily activities
  • Multi-view RGB-D video
  • 3D hand and object annotations
  • Aria/Quest recordings
  • Smart glasses data

Access: https://facebookresearch.github.io/hot3d

Integration

Works with:

  • hand-tracking-toolkit: Evaluation and metrics
  • Aria SDK: Device integration
  • PyTorch3D: 3D processing
  • OpenXR: XR platform integration

Limitations

  • Requires multi-view setup or specialized hardware
  • Computational intensive
  • Dataset access requires registration
  • Complex setup compared to single-view methods

Best For

  • XR applications with smart glasses
  • Research in 3D hand tracking
  • High-precision manipulation analysis
  • Benchmarking new algorithms

References

License

CC-BY-NC 4.0 (non-commercial only)

Usage Guidance
This skill is essentially documentation pointing you to the HOT3D GitHub project; it appears coherent and not covertly requesting secrets. Before you follow the SKILL.md steps: (1) verify the GitHub repo URL (https://github.com/facebookresearch/hot3d) and review the repository contents yourself; (2) run pip installs in a virtual environment and inspect requirements.txt to avoid installing surprising packages; (3) be aware the dataset is large and requires registration — check license terms (CC-BY-NC 4.0) to ensure your use is permitted; (4) running demos will process video data, so consider privacy and secure storage for recordings; and (5) if you need Aria/Quest integration or device SDKs, obtain official SDKs from vendors and follow secure device pairing procedures.
Capability Analysis
Type: OpenClaw Skill Name: hot3d Version: 0.1.0 The skill bundle provides documentation and setup instructions for the HOT3D (Hand-Object 3D Dataset) project by Meta Facebook Research. The SKILL.md file contains standard installation steps (git clone, pip install) and Python usage examples consistent with its stated purpose of 3D hand and object tracking. No evidence of malicious intent, data exfiltration, or prompt injection was found.
Capability Assessment
Purpose & Capability
The name, description, and SKILL.md all describe the HOT3D multi-view 3D hand/object tracking project and point to the upstream GitHub/project pages; requested actions (git clone, pip install, download dataset) match the stated purpose.
Instruction Scope
Runtime instructions are limited to cloning the repository, installing Python dependencies, downloading the dataset (which requires registration), and running demos. The instructions do not ask the agent to read unrelated system files, exfiltrate data, or access unrelated environment variables.
Install Mechanism
This is instruction-only (no install spec). The SKILL.md recommends pip installing requirements from the cloned repo, which is normal for a research project; nothing in the skill itself performs arbitrary downloads or writes to disk beyond what a user would do following the repo README.
Credentials
The skill declares no required environment variables or credentials. The only external accesses implied are cloning from GitHub and registering/downloading the dataset from the project site — both expected and proportionate to the purpose.
Persistence & Privilege
always is false and the skill does not request persistent/system-wide privileges or attempt to modify other skills or agent configuration. It runs only when invoked.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hot3d
  3. After installation, invoke the skill by name or use /hot3d
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release of hot3d skill: - Provides multi-view 3D hand and object tracking for egocentric video (Aria/Quest smart glasses). - Tracks hand pose with 21 joint keypoints, object pose in 6DOF, and hand-object interaction analysis. - Offers visualization tools for 3D overlays (skeletons, meshes, objects) on video frames. - Supports research-grade accuracy and XR device integration. - Released under CC-BY-NC 4.0 license.
Metadata
Slug hot3d
Version 0.1.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Hot3d?

HOT3D (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... It is an AI Agent Skill for Claude Code / OpenClaw, with 220 downloads so far.

How do I install Hot3d?

Run "/install hot3d" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hot3d free?

Yes, Hot3d is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hot3d support?

Hot3d is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hot3d?

It is built and maintained by fujunhy (@fujunhy); the current version is v0.1.0.

💬 Comments