You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.The `SlidingWindow`expects a list of values for every frame (even if there is only 1 sample).
71
+
1.`SlidingWindow`automatically handles the data shape. Since we initialized it with `n_signals=1` and `n_dims=1`, we can append a scalar value directly.
72
72
As the loop runs, new data is added to the end, and old data is automatically discarded once the max_length is reached.
73
73
74
74
2. The `smoothness` callable processes the current state of the window.
75
-
It returns the SPARC (Spectral Arc Length) and Jerk RMS.
76
-
If the window does not yet contain enough data to compute the metric, it may return None.
75
+
It returns a result object containing the SPARC (Spectral Arc Length) and Jerk RMS.
76
+
If the window does not yet contain enough data to compute the metric, the result fields will be `None`.
|**Time-Frequency Transforms**| Fourier or wavelet transforms to detect rhythm, periodicity, or temporal structures. | :material-close: |
44
-
|**Symmetry**[^2]| Unary/binary operators measuring geometric or dynamic balance (e.g., left vs. right entropy or energy). | :material-close: |
45
-
|**Synchronization**[^3][^4]| Binary/n-ary operators measuring alignment of signals (cross-correlation, phase-locking, group entrainment). | :material-close: |
46
-
|**Causality**[^4]| Directional relationships (e.g., Granger causality, transfer entropy) to detect leader–follower dynamics. | :material-close: |
47
-
|**Clusterability**[^5]| Measures the tendency of data points to form clusters by means of the Hopkins statistics. | :material-close: |
44
+
|[**Synchronization**](synchronization.md)[^2][^3]| Binary/n-ary operators measuring alignment of signals (cross-correlation, phase-locking, group entrainment). | :material-check: |
45
+
|**Causality**[^3]| Directional relationships (e.g., Granger causality, transfer entropy) to detect leader–follower dynamics. | :material-close: |
46
+
|[**Clusterability**](clusterability.md)[^4]| Measures the tendency of data points to form clusters by means of the Hopkins statistics. | :material-check: |
48
47
|**Predictive Models**| Hidden Markov Models, classifiers, neural networks; used for gesture segmentation or quality inference. | :material-close: |
49
-
|**Saliency / Rarity**[^6]| Detecting unusual occurrences in movement with respect to most frequent patterns. | :material-close: |
48
+
|[**Rarity**](rarity.md)[^5]| Detecting unusual occurrences in movement with respect to most frequent patterns. | :material-check: |
50
49
51
50
52
51
## References
53
52
54
53
[^1]: Glowinski, D., Mancini, M., & Camurri, A. (2013, March). Studying the effect of creative joint action on musicians’ behavior. In International Conference on Arts and Technology (pp. 113-119). Berlin, Heidelberg: Springer Berlin Heidelberg.
55
-
[^2]: Glowinski, D., Dael, N., Camurri, A., Volpe, G., Mortillaro, M., & Scherer, K. (2011). Toward a minimal representation of affective gestures. IEEE Transactions on Affective Computing, 2(2), 106-118.
56
-
[^3]: Varni, G., Volpe, G., & Camurri, A. (2010). A system for real-time multimodal analysis of nonverbal affective social interaction in user-centric media. IEEE Transactions on Multimedia, 12(6), 576-590.
57
-
[^4]: Sabharwal, S. R., Varlet, M., Breaden, M., Volpe, G., Camurri, A., & Keller, P. E. (2022). huSync-A model and system for the measure of synchronization in small groups: A case study on musical joint action. IEEE Access, 10, 92357-92372.
58
-
[^5]: Corbellini, N., Ceccaldi, E., Varni, G., & Volpe, G. (2022, August). An exploratory study on group potency classification from non-verbal social behaviours. In International Conference on Pattern Recognition (pp. 240-255). Cham: Springer Nature Switzerland.
59
-
[^6]: Niewiadomski, R., Mancini, M., Cera, A., Piana, S., Canepa, C., & Camurri, A. (2019). Does embodied training improve the recognition of mid-level expressive movement qualities sonification?. Journal on Multimodal User Interfaces, 13, 191-203.
54
+
[^2]: Varni, G., Volpe, G., & Camurri, A. (2010). A system for real-time multimodal analysis of nonverbal affective social interaction in user-centric media. IEEE Transactions on Multimedia, 12(6), 576-590.
55
+
[^3]: Sabharwal, S. R., Varlet, M., Breaden, M., Volpe, G., Camurri, A., & Keller, P. E. (2022). huSync-A model and system for the measure of synchronization in small groups: A case study on musical joint action. IEEE Access, 10, 92357-92372.
56
+
[^4]: Corbellini, N., Ceccaldi, E., Varni, G., & Volpe, G. (2022, August). An exploratory study on group potency classification from non-verbal social behaviours. In International Conference on Pattern Recognition (pp. 240-255). Cham: Springer Nature Switzerland.
57
+
[^5]: Niewiadomski, R., Mancini, M., Cera, A., Piana, S., Canepa, C., & Camurri, A. (2019). Does embodied training improve the recognition of mid-level expressive movement qualities sonification?. Journal on Multimodal User Interfaces, 13, 191-203.
0 commit comments