Eulerian¶
mg_eulerian ¶
mg_eulerian(self, mode='color', freq_low=0.83, freq_high=1.0, amplification=50, levels=4, chroma_attenuation=1.0, lambda_cutoff=16, target_name=None, overwrite=True)
Applies Eulerian Video Magnification (EVM) to reveal subtle changes in a video.
EVM amplifies small temporal variations that are normally invisible. Two modes are available:
mode='color'— amplifies subtle colour changes (e.g. blood flow / pulse, breathing). Uses a Gaussian pyramid and an ideal (FFT) temporal band-pass filter. Processed in two passes so only a small down-sampled stack is held in memory.mode='motion'— amplifies subtle motion. Uses a Laplacian pyramid with a streaming IIR temporal band-pass filter and spatial-wavelength attenuation, so it runs frame-by-frame with low memory use.
Based on Wu et al., "Eulerian Video Magnification for Revealing Subtle Changes in the World" (SIGGRAPH 2012).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mode
|
str
|
'color' or 'motion'. Defaults to 'color'. |
'color'
|
freq_low
|
float
|
Lower temporal cutoff in Hz. Defaults to 0.83 (~50 bpm). |
0.83
|
freq_high
|
float
|
Upper temporal cutoff in Hz. Defaults to 1.0 (~60 bpm). |
1.0
|
amplification
|
float
|
Amplification factor (alpha). Defaults to 50. |
50
|
levels
|
int
|
Number of spatial pyramid levels. Defaults to 4. |
4
|
chroma_attenuation
|
float
|
Chrominance attenuation in [0, 1] (color mode). Lower values reduce colour artefacts. Defaults to 1.0. |
1.0
|
lambda_cutoff
|
float
|
Spatial wavelength cutoff for amplitude attenuation (motion mode). Defaults to 16. |
16
|
target_name
|
str
|
Target output name. Defaults to None (input filename with the suffix "_evm"). |
None
|
overwrite
|
bool
|
Whether to allow overwriting or auto-increment the filename. Defaults to True. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
MgVideo |
MgVideo
|
An MgVideo pointing to the magnified output video. |
Source code in musicalgestures/_eulerian.py
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 | |