Skip to content

Commit 5a7e51e

Browse files
kongchen1992meta-codesync[bot]
authored andcommitted
Add tech specs intro
Summary: See title Reviewed By: YLouWashU Differential Revision: D84966980 fbshipit-source-id: d50ba255a57e6a4ab0384b81dd30366cb5dd53ec
1 parent c12a3f5 commit 5a7e51e

File tree

10 files changed

+91
-23
lines changed

10 files changed

+91
-23
lines changed

website/docs-technical-specs/aria-studio/_category_.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

website/docs-technical-specs/aria-studio/feature1.mdx

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"label": "Client SDK",
3-
"position": 2
3+
"position": 3
44
}

website/docs-technical-specs/companion-app/_category_.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

website/docs-technical-specs/companion-app/feature1.mdx

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"label": "Coordinate Conventions",
3-
"position": 6
3+
"position": 5
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"label": "Machine Perception Services",
3-
"position": 5
3+
"position": 4
44
}

website/docs-technical-specs/specs.mdx

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,89 @@ sidebar_position: 0
33
title: Technical Specifications
44
slug: /
55
---
6+
7+
# Technical Specifications Reference
8+
9+
Quick reference for Aria Gen 2 technical specifications.
10+
11+
## Specifications by Category
12+
13+
- **[Device](/technical-specs/device/hardware)** - Hardware specs, profiles, calibration, CAD models
14+
- **[VRS Format](/technical-specs/vrs/data-format)** - File format, streams, tools
15+
- **[MPS](/technical-specs/mps/data_formats/basics)** - MPS output formats and data structures
16+
- **[Client SDK](/technical-specs/client-sdk/api)** - API and CLI reference
17+
- **[Coordinate Systems](/technical-specs/coordinate/3d-coor)** - 3D/2D frames, transformations, projections
18+
19+
---
20+
21+
## Quick Reference Tables
22+
23+
### Recording Profiles
24+
25+
| Profile | RGB | CV Cameras | ET | HT | VIO | GPS |
26+
|---------|-----|------------|----|----|-----|-----|
27+
| **profile8** | 10Hz, 2560×1920 | 30Hz | 30Hz | 30Hz | 10Hz ||
28+
| **profile9** | 5Hz, 2560×1920 | 10Hz | 30Hz | 30Hz | 10Hz ||
29+
| **profile10** | 30Hz, 2016×1512 | 30Hz | 30Hz | 30Hz | 10Hz ||
30+
31+
[Full profile specs →](/technical-specs/device/profile)
32+
33+
### Sensor Specifications
34+
35+
| Sensor | Quantity | Rate | Resolution/Range |
36+
|--------|----------|------|------------------|
37+
| CV Cameras | 4 | 30 Hz | 512×512 |
38+
| RGB Camera | 1 | 10-30 Hz | 2016×1512 - 2560×1920 |
39+
| ET Cameras | 2 | 5 Hz | 200×200 |
40+
| IMU | 2 | 800 Hz | - |
41+
| Microphones | 7+1 | 16 kHz | - |
42+
| GPS | 1 | 1 Hz | - |
43+
| Magnetometer | 1 | 100 Hz | - |
44+
| Barometer | 1 | 50 Hz | - |
45+
| PPG | 1 | 128 Hz | - |
46+
| ALS | 1 | ~9.4 Hz | - |
47+
48+
[Full hardware specs →](/technical-specs/device/hardware)
49+
50+
### Common Stream IDs
51+
52+
| Stream Label | StreamId | Type |
53+
|--------------|----------|------|
54+
| rgb | 214-1 | Camera |
55+
| slam-left | 1201-1 | Camera |
56+
| slam-right | 1201-2 | Camera |
57+
| imu-left | 1202-1 | IMU |
58+
| imu-right | 1202-2 | IMU |
59+
| eyetracking | 231-1 | MP Output |
60+
| handtracking | 232-1 | MP Output |
61+
62+
[Full stream ID mapper →](/technical-specs/vrs/streamid-label-mapper)
63+
64+
### Coordinate Conventions
65+
66+
| Convention | Value |
67+
|------------|-------|
68+
| Coordinate system | Right-handed |
69+
| Quaternion order | (x, y, z, w) |
70+
| Rotation matrix | Row-major |
71+
| Transform notation | `T_dest_source` |
72+
73+
[Coordinate system details →](/technical-specs/coordinate/3d-coor)
74+
75+
---
76+
77+
## Common Abbreviations
78+
79+
| Term | Meaning |
80+
|------|---------|
81+
| VRS | Video Recording Storage |
82+
| MPS | Machine Perception Services |
83+
| VIO | Visual Inertial Odometry |
84+
| SLAM | Simultaneous Localization and Mapping |
85+
| CV | Computer Vision (cameras) |
86+
| ET | Eye Tracking |
87+
| HT | Hand Tracking |
88+
| IMU | Inertial Measurement Unit |
89+
| PPG | Photoplethysmography |
90+
| ALS | Ambient Light Sensor |
91+
| CPF | Central Pupil Frame |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"label": "VRS Format",
3-
"position": 0
3+
"position": 2
44
}

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const config = {
151151
sidebarId: 'technicalSpecsSidebar',
152152
docsPluginId: 'technical-specs',
153153
position: 'left',
154-
label: 'Technical Specs',
154+
label: 'Technical Insights & Specs',
155155
},
156156
{
157157
href: 'https://www.projectaria.com/',

0 commit comments

Comments
 (0)