|
Algorithm 1: Assisted Segmentation Algorithm |
|
Input: Continuous gesture data: ;
Output: Split start point list S, split end point list O.
-
1
Transition state mean: ;
-
2
Define the length l of the sliding window sequence, the current window value , the window value after sliding 5 times, the window value after sliding 10 times, ,;
-
3
Traverse continuous gesture data D;
-
4
if then Read the current position and add it to the starting point list S;
-
5
if then Read the current position and add it to the end point list O;
-
6
End;
|