Mse Dominance
Multi-scale entropy analysis module for dominance detection in ensemble performances.
This module implements the multi-scale entropy (MSE) algorithm for analyzing dominance and leadership in social creative activities. The method quantifies the complexity of movement dynamics across multiple time scales to identify leadership patterns in musical ensembles.
The multi-scale entropy algorithm includes: 1. Coarse-graining procedure for multi-scale signal representation 2. Sample entropy calculation for irregularity quantification 3. Complexity index computation across scales 4. Dominance analysis based on complexity differences
Typical use cases include: 1. Leadership detection in string quartet performances 2. Dominance analysis in social creative interactions 3. Group coordination pattern analysis 4. Movement complexity characterization 5. Real-time ensemble performance monitoring
References
Glowinski, D., Coletta, P., Volpe, G., Camurri, A., Chiorri, C., & Schenone, A. (2010). Multi-scale entropy analysis of dominance in social creative activities. In Proceedings of the 18th ACM international conference on Multimedia (pp. 1035-1038).
Costa, M., Goldberger, A. L., & Peng, C.-K. (2005). Multiscale entropy analysis of biological signals. Physical Review E, 71(2), 021906.
MultiScaleEntropyDominance
Real-time multi-scale entropy analyzer for dominance detection.
Quantifies the complexity of movement dynamics across multiple time scales to identify leadership patterns in musical ensembles.
Info
The algorithm includes coarse-graining, sample entropy calculation, and complexity index computation as described in Glowinski et al. (2010).
Read more in the User Guide.
| Parameters: |
|
|---|
References
Glowinski et al. (2010). Multi-scale entropy analysis of dominance in social creative activities. ACM Multimedia, 1035-1038.
Source code in pyeyesweb/analysis_primitives/mse_dominance.py
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 | |
__call__(signals)
Compute dominance analysis for ensemble performance data.
Evaluates complexity across multiple scales for each signal in the window and optionally computes dominance scores and identifies leaders.
| Parameters: |
|
|---|
| Returns: |
|
|---|