Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

hot3dhot3d 搜索

Agent Skill

hot3d 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,666

周安装

275

GitHub Stars

公开资料未说明

下载量

2,178
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hot3d(hot3d 搜索)
来源仓库:https://github.com/fujunhy/hot3d
安装命令:
openclaw skills install hot3d
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install hot3d

简介

hot3d 用于检索 Meta Facebook 的 HOT3D 数据集,支持多视角手对象 3D 跟踪。

  • 适用于 Aria/Quest 智能眼镜相关的计算机视觉项目开发。
  • 提供结构化数据访问,便于模型训练与实验验证。
  • 安装命令为 openclaw skills install hot3d,适用于 OpenClaw 环境。
  • 使用前需确认数据格式和许可协议,确保符合研究用途要求。

SKILL.md

name
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 3D hand pose, object pose, and hand-object interaction tracking. Supports visualization with 3D joint projections, meshes, and skeletal overlays on video frames.
license
CC-BY-NC 4.0
metadata
skill-author
K-Dense Inc.
original-repo
https://github.com/facebookresearch/hot3d
organization
Meta Facebook Research
skill-category
Computer Vision / XR
tags
[3d-tracking, multi-view, egocentric, hand-object-tracking, aria-glasses, quest, meta-xr]

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: <100ms 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

  • Project: https://facebookresearch.github.io/hot3d
  • GitHub: https://github.com/facebookresearch/hot3d
  • Paper: HOT3D dataset publication
  • Citation: See project page

License

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.31%
按下载量换算2,032

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills