-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneric-joint-angles.calqulus.yaml
More file actions
575 lines (491 loc) · 11.5 KB
/
generic-joint-angles.calqulus.yaml
File metadata and controls
575 lines (491 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
# A pipeline is written in YAML and instructs the Calqulus processing engine what to calculate.
# In order to process this pipeline, skeleton must be solved in QTM first.
# A pipeline consists of any number of base nodes defined on the root level.
# Output nodes define an end result that is exported to the global scope and exported in the resulting JSON file.
# Output node can be 'event' or 'parameter'
# The main difference between the parameter and event is what type of data is stored.
# A parameter node will store series and scalar data, whereas an event node will store event data.
# Space node defines custom coordinate systems. It is useful when orientation of subject changes
# with regards to the global coordinate system, e.g. walking through lab in both directions.
# Order of nodes is not important. They can be placed anywhere in YAML file.
############
## SPACES ##
############
# Create a space named VirtualLab, that is defined by the orientation of Hips (Pelvis) segment.
- space: VirtualLab
alignWithSegment:
segment: Hips
############
## EVENTS ##
############
# An event node defines steps used to calculate an event.
# An event is a label that describes one or more points in time.
# Events can be used in both event and parameter calculations, as well as for normalization by the reporting framework.
# The resulting event is exported to the global scope and exported in the resulting JSON file.
# Create event at left knee maximum flexion
- event: BOF
where:
name: '!Static*'
steps:
- import: [0]
- event: EOF
where:
name: '!Static*'
steps:
- import: [$length]
############
## SERIES ##
############
# Calculating joint angles
# --- Pelvis ---
- parameter: Pelvic Angles
where:
name: '!Static*'
steps:
- angle: Hips # angle is calculated relative to axes of global coordinate system, if only single input exists
space: VirtualLab # calculate angle relative to virtual lab
- multiply: [$prev, [-1, 1, 1]] # invert first component of output
# --- Hips ---
- parameter: Left Hip Angles
where:
name: '!Static*'
set: left
steps:
- angle: [Hips, LeftUpLeg] # when two segments are specified, joint angle between the segments is calculated
- multiply: [$prev, [1, -1, -1]]
- parameter: Right Hip Angles
where:
name: '!Static*'
set: right
steps:
- angle: [Hips, RightUpLeg]
# --- Knee ---
- parameter: Left Knee Angles
where:
name: '!Static*'
set: left
steps:
- angle: [LeftUpLeg, LeftLeg]
- multiply: [$prev, [-1, -1, -1]]
- parameter: Right Knee Angles
where:
name: '!Static*'
set: right
steps:
- angle: [RightUpLeg, RightLeg]
- multiply: [$prev, [-1, 1, 1]]
# --- Ankle ---
- parameter: Left Ankle Angles
where:
name: '!Static*'
set: left
steps:
- angle: [LeftLeg, LeftFoot]
- multiply: [$prev, [1, -1, 1]]
- parameter: Right Ankle Angles
where:
name: '!Static*'
set: right
steps:
- angle: [RightLeg, RightFoot]
- multiply: [$prev, [1, 1, -1]]
# --- Thorax ---
- parameter: Thorax Angles
where:
name: '!Static*'
steps:
- angle: [Hips, Spine2]
- multiply: [$prev, [-1, -1, 1]]
# --- Shoulder ---
- parameter: Left Shoulder Angles
where:
name: '!Static*'
set: left
steps:
- angle: [Spine2, LeftArm]
- multiply: [$prev, [1, -1, -1]]
- parameter: Right Shoulder Angles
where:
name: '!Static*'
set: right
steps:
- angle: [Spine2, RightArm]
- multiply: [$prev, [1, 1, 1]]
# --- Elbow ---
- parameter: Left Elbow Angles
where:
name: '!Static*'
set: left
steps:
- angle: [LeftArm, LeftForeArm]
- multiply: [$prev, [1, 1, -1]]
- parameter: Right Elbow Angles
where:
name: '!Static*'
set: right
steps:
- angle: [RightArm, RightForeArm]
# --- Wrist ---
- parameter: Left Wrist Angles
where:
name: '!Static*'
set: left
steps:
- angle: [LeftForeArm, LeftHand]
- multiply: [$prev, [1, -1, 1]]
- parameter: Right Wrist Angles
where:
name: '!Static*'
set: right
steps:
- angle: [RightForeArm, RightHand]
- multiply: [$prev, [1, 1, -1]]
# --- Head ---
- parameter: Head Angles
where:
name: '!Static*'
steps:
- angle: [Head, Spine2]
#############
## Metrics ##
#############
# Find global maximum/minimum/range
# Pelvis
- parameter: Pelvis Tilt max
where:
name: '!Static*'
set: left
steps:
- import: Pelvic Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Pelvis Tilt min
where:
name: '!Static*'
set: left
steps:
- import: Pelvic Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Pelvis Tilt range
where:
name: '!Static*'
set: left
steps:
- subtract: [Pelvis Tilt max, Pelvis Tilt min]
# Hips
- parameter: Left Hip Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Hip Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Hip Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Hip Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Hip Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Hip Flex max, Left Hip Flex min]
- parameter: Right Hip Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Hip Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Hip Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Hip Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Hip Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Hip Flex max, Right Hip Flex min]
# Knees
- parameter: Left Knee Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Knee Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Knee Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Knee Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Knee Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Knee Flex max, Left Knee Flex min]
- parameter: Right Knee Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Knee Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Knee Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Knee Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Knee Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Knee Flex max, Right Knee Flex min]
# Ankles
- parameter: Left Ankle Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Ankle Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Ankle Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Ankle Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Ankle Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Ankle Flex max, Left Ankle Flex min]
- parameter: Right Ankle Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Ankle Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Ankle Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Ankle Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Ankle Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Ankle Flex max, Right Ankle Flex min]
# Shoulders
- parameter: Left Shoulder Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Shoulder Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Shoulder Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Shoulder Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Shoulder Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Shoulder Flex max, Left Shoulder Flex min]
- parameter: Right Shoulder Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Shoulder Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Shoulder Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Shoulder Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Shoulder Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Shoulder Flex max, Right Shoulder Flex min]
# Elbows
- parameter: Left Elbow Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Elbow Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Elbow Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Elbow Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Elbow Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Elbow Flex max, Left Elbow Flex min]
- parameter: Right Elbow Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Elbow Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Elbow Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Elbow Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Elbow Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Elbow Flex max, Right Elbow Flex min]
# Wrists
- parameter: Left Wrist Flex max
where:
name: '!Static*'
set: left
steps:
- import: Left Wrist Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Left Wrist Flex min
where:
name: '!Static*'
set: left
steps:
- import: Left Wrist Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Left Wrist Flex range
where:
name: '!Static*'
set: left
steps:
- subtract: [Left Wrist Flex max, Left Wrist Flex min]
- parameter: Right Wrist Flex max
where:
name: '!Static*'
set: right
steps:
- import: Right Wrist Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Right Wrist Flex min
where:
name: '!Static*'
set: right
steps:
- import: Right Wrist Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Right Wrist Flex range
where:
name: '!Static*'
set: right
steps:
- subtract: [Right Wrist Flex max, Right Wrist Flex min]
# Thorax
- parameter: Thorax Forward Tilt max
where:
name: '!Static*'
set: left
steps:
- import: Thorax Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Thorax Forward Tilt min
where:
name: '!Static*'
set: left
steps:
- import: Thorax Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Thorax Forward Tilt range
where:
name: '!Static*'
set: left
steps:
- subtract: [Thorax Forward Tilt max, Thorax Forward Tilt min]
# Head
- parameter: Head Forward Tilt max
where:
name: '!Static*'
set: left
steps:
- import: Head Angles
- eventMask: [$prev, BOF, EOF]
- max: $prev.x
- parameter: Head Forward Tilt min
where:
name: '!Static*'
set: left
steps:
- import: Head Angles
- eventMask: [$prev, BOF, EOF]
- min: $prev.x
- parameter: Head Forward Tilt range
where:
name: '!Static*'
set: left
steps:
- subtract: [Head Forward Tilt max, Head Forward Tilt min]