Skip to content

Commit 3193ed3

Browse files
Rewrite the main text, add author section
1 parent 050f38e commit 3193ed3

File tree

4 files changed

+65
-65
lines changed

4 files changed

+65
-65
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/.quarto
22
/_site
33
/.quarto/
4+
paper.md

_quarto.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ website:
88
text: Home
99
- href: anatomical_table.qmd
1010
text: Landmark table
11-
# - href: authors.qmd
12-
# text: Authors
11+
- href: authors.qmd
12+
text: Authors
1313

1414
format:
1515
html:
@@ -19,6 +19,3 @@ format:
1919
grid:
2020
body-width: 1500px
2121
sidebar-width: 50px
22-
23-
24-

authors.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Julius has completed his masters in 2019 in Cognitive Neuropsychology in Oldenbu
2020

2121
![](pics/julius.jpg){ width="50%" class=center }
2222

23-
## Yahya Shirazi
24-
Yahya is an Assistant Project Scientist at the Swartz center for Computational Neuroscience working hard to make the MOBI world a better place.
23+
## Seyed (Yahya) Shirazi
24+
Yahya is an Assistant Project Scientist at the [Swartz center for Computational Neuroscience](https://sccn.ucsd.edu) working hard to make the MOBI world a better place.
2525

2626
![](pics/yahya.jpg){ width="50%" class=center }

index.qmd

Lines changed: 60 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,90 @@
1-
# On the Transferability and Accessibility of Human Movement Data
1+
# A Standardized Framework for Sensor Placement in Human Motion Capture
22

3-
# Introduction
3+
::: {.callout-note}
4+
This website presents a unified framework for sensor placement in human motion capture and wearable applications. For the complete research paper, please visit our preprint on [bioRxiv](https://www.biorxiv.org/) (link to be updated).
5+
:::
46

5-
Human motion capture encompasses various technologies and techniques to record different modalities of human motion, such as position, speed, or acceleration. These techniques are extensively used in movement science, rehabilitation, sports, and entertainment. However, the heterogeneity of recorded modalities and the varying spatial and temporal resolutions of these recordings pose challenges for the utility and interpretability of motion capture data. This necessitates a clear, unified approach for sensor placement to ensure data transferability and accessibility across different systems.
7+
## Introduction
68

7-
Motion capture generally involves acquiring motion-related physical quantities (motion modalities) such as position, speed, and acceleration. The fundamental differences between these quantities highlight the need for different technologies and methods, including passive and active marker-based systems, IMUs, ToF, dot projection, video cameras, and deep learning techniques.
9+
The proliferation of wearable sensors and monitoring technologies has created an urgent need for standardized sensor placement protocols. While existing standards like SENIAM address specific applications, there is no comprehensive framework that spans different sensing modalities and applications. We present a unified sensor placement standard that ensures reproducibility and transferability of human movement data across different recording systems and research domains.
810

9-
Each motion capture method has limitations, impacting the interpretability and transferability of data from one modality to another. To address these limitations, we propose a precise annotation of features affecting the quality of motion capture interpretation.
11+
## Fundamentals
1012

11-
In this manuscript, we will briefly describe the main features of each modality and introduce a set of definitions that we will use throughout. We finally propose a scheme for unified sensor placement annotation with quantifiable levels of precision. We try to align this scheme with the currently available standards for data sharing and annotation, namely the **[Brain Imaging Data Structure (BIDS)](https://bids.neuroimaging.io/)** and the **[Hierarchical Event Descriptors (HED)](https://www.hedtags.org/)**. See [Motion-BIDS](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/motion.html) and definition of body parts in [HED schema browser](https://www.hedtags.org/display_hed.html) for relevant details.
13+
### Reference Frames and Coordinate Systems
1214

13-
# Types of Motion Capture
14-
## Optical Motion Capture (OMC)
15+
A **reference frame** consists of an origin point and a set of axes that define directions in space. In human movement analysis, we encounter multiple reference frames:
1516

16-
**Optical Motion Capture (OMC)** systems utilize multiple cameras to track the movement of reflective markers placed on a subject's body or objects. These markers reflect light emitted by the cameras, allowing the system to triangulate their positions in three-dimensional space. The cameras record the positions of these markers at high frame rates, capturing data on **marker positions (POS)** and, optionally, **orientation (ORNT)**. Additionally, **velocity (VEL)**, **acceleration (ACCEL)**, and **angular acceleration (ANGACCEL)** data can be derived from the marker positions over time. **Marker placement** should define the type, size, and shape of markers, along with their specific placement on anatomical landmarks, such as joints and limb segments.
17+
1. **Global laboratory frame**: The fixed reference frame of the measurement space
18+
2. **Anatomical frames**: Tied to specific body segments
19+
3. **Sensor-specific frames**: Related to individual sensor positioning
1720

18-
## Inertial Measurement Units (IMUs)
21+
A **coordinate system** is fully described by:
22+
1. The origin relative to which coordinates are expressed
23+
2. The interpretation of the three axes
24+
3. The units in which measurements are expressed
1925

20-
**Inertial Measurement Units (IMUs)** consist of small sensors, including accelerometers, gyroscopes, and sometimes magnetometers, attached to a subject's body. IMUs measure changes in **acceleration (ACCEL)**, **angular acceleration (ANGACCEL)**, **velocity (VEL)**, and **orientation (ORNT)**. They are compact and versatile, making them suitable for wearable applications like sports performance analysis and motion tracking in remote or outdoor environments. **Positioning of the IMU** on the body should include details about the location and orientation, typically described using text and photographs or diagrams showing the sensor's orientation relative to the body part it is attached to.
26+
### Hierarchical Structure
2127

22-
## Markerless Motion Capture
28+
Reference frames can have a hierarchical structure, where one frame is nested within another. For example:
29+
- Torso position within the room frame
30+
- Arm position relative to the torso
31+
- Hand position relative to the arm
2332

24-
**Markerless Motion Capture** systems use algorithms to track a subject's movements without physical markers. Cameras capture video footage, which software processes to extract data on **position (POS)**, **orientation (ORNT)**, and sometimes **velocity (VEL)** and **acceleration (ACCEL)**. Markerless motion capture is non-invasive and captures natural movement, making it popular in entertainment, biomechanics, and human-computer interaction. The tracked points' definition is often software-specific, depending on which points the software allows to be tracked.
33+
The **global reference frame** sits at the top of this hierarchy, associated with the space through which the entire body moves.
2534

26-
# Definitions
35+
## Unified Placement Framework
2736

28-
## Space
29-
In BIDS terms, **space** is defined as an artificial frame of reference used to describe different anatomies in a unifying manner (see Appendix VIII). Data collected in studies of physical or virtual motion typically have a reference frame anchored to the physical lab space or the virtual environment.
37+
### Anatomical Coordinate System
3038

31-
## Reference Frame
32-
A **reference frame** is an abstract coordinate system with a specified origin, orientation, and scale, defined by a set of reference points (Kovalevsky & Mueller, 1989). It broadly describes the type of space or context associated with the data, whether the space is fixed or moving (global or local reference frame), or the identity of the object it moves with. For instance, an anatomical reference frame is fixed to the body and moves as the body moves through space.
39+
We define precise anatomical coordinate systems for each body segment using palpable landmarks. These definitions ensure consistent interpretation and implementation across different applications.
3340

34-
## Coordinate System
35-
A **coordinate system** is fully described by (1) the origin, (2) the interpretation of the axes, and (3) the units. In BIDS terms, a coordinate system comprises information about (1) the origin relative to which the coordinate is expressed, (2) the interpretation of the three axes, and (3) the units in which the numbers are expressed.
41+
::: {.callout-note}
42+
The complete **anatomical landmark table** with detailed coordinate systems for all body segments is available [here](./anatomical_table.qmd).
43+
:::
3644

37-
## Hierarchical Structure of Reference Frames
38-
Reference frames can have a hierarchical structure, where one reference frame is nested within another. For example, the position of the torso can be expressed within a room reference frame, the arm position relative to the torso, and the hand position relative to the arm. The reference frame at the top of this hierarchy is the **global reference frame**, associated with the space through which the entire body moves. This representation is useful in scenarios where the location of the person in space is relevant rather than their posture or limb motion.
45+
### Placement Principles
3946

40-
# Unified Placement Scheme
47+
Our unified placement scheme follows these core principles:
4148

42-
## Anatomical Coordinate System for Rigid Body Parts
43-
Axis definitions per body part are provided in the **[anatomical landmark table](./anatomical_table.qmd)**. The table includes the name of the body part, the axis, and the direction of the axis, defined using anatomical landmarks, with axis limits ranging from 0 to 100% of the distance between the landmarks.
49+
1. Sensor placement must be reproducible by a human with defined precision
50+
2. Placement coordinates relate to anatomical landmarks of the relevant body part
51+
3. Landmarks define the origin, direction, and limits of axes
52+
4. Sensor locations are reported as ratios of the axis limits
53+
5. Placement precision depends on landmarks, axes, and measurement method
4454

45-
::: {.callout-note}
46-
You can find the **anatomical landmark** table **[here](./anatomical_table.qmd)**.
47-
:::
55+
### Precision Levels
4856

49-
## Principles of Sensor Placement Annotation
50-
We propose a **unified placement scheme** for sensors based on anatomical landmarks and the axes defined in the anatomical landmark table. The scheme follows these principles:
57+
We define three levels of placement precision:
5158

52-
1. Sensor placement should be reproducible by a human with defined precision.
53-
2. Placement in each dimension should be related to the anatomical landmarks of the relevant body part.
54-
3. Landmarks define the origin, direction, and limits of the axes.
55-
4. Sensor locations should be reported as a ratio of the limits of each axis for each body part.
56-
5. Placement precision depends on the precision of landmarks, axes, and the measurement method.
59+
1. **Level 1**: ~10% precision, such as Visual Inspection
60+
- Placement defined by visual inspection of body parts and landmarks
61+
- Limited by human eye resolution and alignment ability
5762

58-
## Placement Precision
59-
The precision of sensor placement is related to the precision of landmark definitions, axis orthogonality, and measurement methods. We propose the following precision levels:
63+
2. **Level 2**: ~5% precision, such as Tape Measure
64+
- Placement defined by measuring distances between landmarks
65+
- Limited by tape measure resolution and alignment ability
6066

61-
1. **Visual Inspection**: Placement defined by visual inspection of body parts and landmarks, limited by human eye resolution and alignment ability. Estimated precision: ~10% of the distance between landmarks.
62-
2. **Tape Measure**: Placement defined by measuring distances between landmarks and placing the sensor at a specific ratio. Limited by tape measure resolution and alignment ability. Estimated precision: ~5% of the distance between landmarks.
63-
3. **3D Scanning**: Placement defined by 3D scanning body parts and placing the sensor at a specific ratio. Limited by 3D scanner resolution and alignment ability. Estimated precision: ~1% of the distance between landmarks.
67+
3. **Level 3**: ~1% precision, such as 3D Scanning
68+
- Placement defined by 3D scanning body parts
69+
- Limited by scanner resolution and alignment ability
6470

65-
**Sensor placement precision** should always be reported in the dataset metadata.
71+
### Standardized Annotation
6672

67-
## Sensor Placement Annotation
68-
Sensor placement should be annotated using a standardized format, including:
73+
Sensor placement should be documented using a standardized format that includes:
6974

70-
1. Body part name
71-
2. Axis name
72-
3. Axis direction
73-
4. Axis limits
74-
5. Sensor location as a ratio of the axis limits
75-
6. Sensor placement precision
75+
1. Body part name
76+
2. Axis name and direction
77+
3. Axis limits
78+
4. Sensor location (as ratio of axis limits)
79+
5. Placement precision level
7680

77-
### Hierchical Event Descriptors (HED) for Sensor Placement
78-
We *propose* using Hierarchical Event Descriptors (HED) to annotate sensor placement in a standardized format. A possible HED tag for sensor placement could be:
81+
This framework does not prescribe specific annotation formats; different standards and specification can use the principles to develop their own. However, this framework is designed to be compatible with existing data sharing standards such as [Brain Imaging Data Structure (BIDS)](https://bids.neuroimaging.io/) and [Hierarchical Event Descriptors (HED)](https://www.hedtags.org/). Specifically, using this framework would provide precise details for the sensor placement as described in [Motion-BIDS](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/motion.html).
7982

80-
(Body-part, (X-position/#, Y-position/#, Z-position/#), Precision)
83+
An exemplar annotation following the general HED instructions can be represented as:
8184

82-
Where:
83-
84-
- Body-part: The name of the body part where the sensor is placed.
85-
- X-position, Y-position, Z-position: The sensor's position along the X, Y, and Z axes, respectively, expressed as a ratio of the axis limits.
86-
- Precision: The precision level of sensor placement (e.g., Visual Inspection, Tape Measure, 3D Scanning).
85+
```
86+
(Body-part, (X-position/#, Y-position/#, Z-position/#), Precision)
87+
```
88+
(note that the exact HED tags are under development under [HED-SLAM](https://www.hedtags.org/display_hed_prerelease.html?schema=slam_prerelease))
8789

88-
NOTE: This proopsal is still in discussion and we are open to feedback and suggestions. Importantly, we aim to establish a **HED partnered schemaw** to define (1) the anatomical landmarks, (2) axis limits, and (3) axis direction for each body part.
90+
This standardization framework represents a significant step toward improving data quality, reproducibility, and interoperability in human movement analysis, from clinical biomechanics to continuous health monitoring.

0 commit comments

Comments
 (0)