Skip to content

Files

Latest commit

4475d29 · Aug 16, 2024

History

History
93 lines (64 loc) · 4.48 KB

form-analysis.md

File metadata and controls

93 lines (64 loc) · 4.48 KB

Form Analysis

Method:

We take an algorithmic approach to caclulate a score for a rep of a certain exercise. Given a time series of 3D keypoints, we calcuate angle between joints, velocity, and distance between joints. To calculate the score, we compare these values to a predefined range of 'perfect' values for a specific exercise

Skeleton Keypoints:

We use the Human3.6m 17 keypoints

Joint Number Joint Name
0 Root
1 Right Hip
2 Right Knee
3 Right Ankle
4 Left Hip
5 Left Knee
6 Left Ankle
7 Belly
8 Neck
9 Nose
10 Head
11 Left Shoulder
12 Left Elbow
13 Left Wrist
14 Right Shoulder
15 Right Elbow
16 Right Wrist

Rep Segmentation

We split a video of mutliple repeititons of the same exercise into individual clips containing a single repetition.

These clips are used later for analysis and tracking form across a whole set of reps.

repetition segmentation algo

The algorithm we used is derived from AIFit. We first achieve an estimate using a fixed clip length and optimize to find individual clip start and stop frames.

Initialization

To obtain an initial estimate of the segmentation, we follow these steps:

  1. Assume a fixed-period pose signal: T i n i t = T ( t s t a r t , τ ) = T i | t i = t s t a r t + ( i 1 ) τ

    • τ : period
    • t s t a r t : starting point of repetitions
  2. Define affinity between two 3D poses: A ( p m , p n ) = negative mean per joint position error (MPJPE) between p m and p n

  3. Determine initial period estimate τ using auto-correlation: R P P ( τ , s ) = 1 N 2 s τ t = s N s τ A ( p t , p t + τ )

    • s : signal shrinkage at both ends to account for noise
    • N : total number of poses
  4. Iterate over s and τ to find τ :

    • Select smallest τ where R P P ( τ , s ) reaches a local maximum
    • Corresponding s becomes s

τ represents the period that maximizes the auto-correlation of the signal, accounting for noise outside repetitions.

Finding the Start of the First Repetition

After estimating the period $\tau^$, we search for the beginning of the first repetition $t_{start}$ by maximizing the average affinity $A_{avg}$ of $T(t_{start}, \tau^)$:

A a v g ( T ) = 1 k m i n 2 i = 1 k m i n j = 1 k m i n A s e q ( T i , T j )

where:

$A_{seq}(T_i, T_j) = \frac{1}{\tau^} \sum_{l=1}^{\tau^} A(p_{t_i+l}, p_{t_j+l})$

  • A s e q ( T i , T j ) computes the similarity between two repetitions of equal period τ (intervals T i and T j ).
  • A a v g ( T ) averages similarities between all possible pairs of intervals, representing a global affinity of the repetition segmentation T .
  • At this stage, T is parameterized only by t s t a r t , since τ was found in the previous step.

We select $t^{start}$ as the smallest value for which $A{avg}(T(t_{start}, \tau^))$ has a local maximum. This approach:

  1. Provides the highest similarity between repetitions.
  2. Uses the smallest such maximum to prevent solutions like the beginning of the 2nd/3rd/etc. interval, which are also local maxima.

Calculations:

Metric Formula
Angle θ = cos 1 ( a b a b )
Velocity $\mathbf{v}{P{F_2/F_1}} = \frac{d\mathbf{r}_2}{dt} = \frac{d(\mathbf{r}1 + \mathbf{r}{1P})}{dt} = \frac{d\mathbf{r}1}{dt} + \frac{d\mathbf{r}{1P}}{dt}$
Distance d = ( x 2 x 1 ) 2 + ( y 2 y 1 ) 2 + ( z 2 z 1 ) 2