Flow¶
Flow ¶
Flow(parent, filename, color, has_audio)
Class container for the sparse and dense optical flow processes.
Initializes the Flow class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parent
|
MgVideo
|
the parent MgVideo. |
required |
filename
|
str
|
Path to the input video file. Passed by parent MgVideo. |
required |
color
|
bool
|
Set class methods in color or grayscale mode. Passed by parent MgVideo. |
required |
has_audio
|
bool
|
Indicates whether source video file has an audio track. Passed by parent MgVideo. |
required |
Source code in musicalgestures/_flow.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |
dense ¶
dense(filename=None, pyr_scale=0.5, levels=3, winsize=15, iterations=3, poly_n=5, poly_sigma=1.2, flags=0, velocity=False, distance=None, timestep=1, move_step=1, angle_of_view=0, scaledown=1, skip_empty=False, use_gpu=False, convert=True, target_name=None, overwrite=True)
Renders a dense optical flow video of the input video file using cv2.calcOpticalFlowFarneback(). The description of the matching parameters are taken from the cv2 documentation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
Path to the input video file. If None the video file of the MgVideo is used. Defaults to None. |
None
|
pyr_scale
|
float
|
Specifies the image scale (<1) to build pyramids for each image. |
0.5
|
levels
|
int
|
The number of pyramid layers including the initial image. |
3
|
winsize
|
int
|
The averaging window size. Larger values increase the algorithm robustness to image noise and give more chances for fast motion detection, but yield more blurred motion field. Defaults to 15. |
15
|
iterations
|
int
|
The number of iterations the algorithm does at each pyramid level. Defaults to 3. |
3
|
poly_n
|
int
|
The size of the pixel neighborhood used to find polynomial expansion in each pixel. Larger values mean that the image will be approximated with smoother surfaces, yielding more robust algorithm and more blurred motion field, typically poly_n =5 or 7. Defaults to 5. |
5
|
poly_sigma
|
float
|
The standard deviation of the Gaussian that is used to smooth derivatives used as a basis for the polynomial expansion. For |
1.2
|
flags
|
int
|
Operation flags that can be a combination of the following: - OPTFLOW_USE_INITIAL_FLOW uses the input flow as an initial flow approximation. - OPTFLOW_FARNEBACK_GAUSSIAN uses the Gaussian \f$\texttt{winsize}\times\texttt{winsize}\f$ filter instead of a box filter of the same size for optical flow estimation. Usually, this option gives z more accurate flow than with a box filter, at the cost of lower speed. Normally, |
0
|
velocity
|
bool
|
Whether to compute optical flow velocity or not. Defaults to False. |
False
|
distance
|
int
|
Distance in meters to image (focal length) for returning flow in meters per second. Defaults to None. |
None
|
timestep
|
int
|
Time step in seconds for returning flow in meters per second. Defaults to 1. |
1
|
move_step
|
int
|
step size in pixels for sampling the flow image. Defaults to 1. |
1
|
angle_of_view
|
int
|
angle of view of camera, for reporting flow in meters per second. Defaults to 0. |
0
|
scaledown
|
int
|
factor to scaledown frame size of the video. Defaults to 1. |
1
|
skip_empty
|
bool
|
If True, repeats previous frame in the output when encounters an empty frame. Defaults to False. |
False
|
use_gpu
|
bool
|
Whether to attempt GPU (CUDA) acceleration using |
False
|
target_name
|
str
|
Target output name for the video. Defaults to None (which assumes that the input filename with the suffix "_flow_dense" should be used). |
None
|
overwrite
|
bool
|
Whether to allow overwriting existing files or to automatically increment target filenames to avoid overwriting. Defaults to True. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
MgVideo |
'musicalgestures.MgVideo'
|
A new MgVideo pointing to the output video file. |
Source code in musicalgestures/_flow.py
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 | |
sparse ¶
sparse(filename=None, corner_max_corners=100, corner_quality_level=0.3, corner_min_distance=7, corner_block_size=7, of_win_size=(15, 15), of_max_level=2, of_criteria=(cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 10, 0.03), use_gpu=False, convert=True, target_name=None, overwrite=True)
Renders a sparse optical flow video of the input video file using cv2.calcOpticalFlowPyrLK(). cv2.goodFeaturesToTrack() is used for the corner estimation. The description of the matching parameters are taken from the cv2 documentation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
str
|
Path to the input video file. If None, the video file of the MgVideo is used. Defaults to None. |
None
|
corner_max_corners
|
int
|
Maximum number of corners to return. If there are more corners than are found, the strongest of them is returned. |
100
|
corner_quality_level
|
float
|
Parameter characterizing the minimal accepted quality of image corners. The parameter value is multiplied by the best corner quality measure, which is the minimal eigenvalue (see cornerMinEigenVal in cv2 docs) or the Harris function response (see cornerHarris in cv2 docs). The corners with the quality measure less than the product are rejected. For example, if the best corner has the quality measure = 1500, and the qualityLevel=0.01, then all the corners with the quality measure less than 15 are rejected. Defaults to 0.3. |
0.3
|
corner_min_distance
|
int
|
Minimum possible Euclidean distance between the returned corners. Defaults to 7. |
7
|
corner_block_size
|
int
|
Size of an average block for computing a derivative covariation matrix over each pixel neighborhood. See cornerEigenValsAndVecs in cv2 docs. Defaults to 7. |
7
|
of_win_size
|
tuple
|
Size of the search window at each pyramid level. Defaults to (15, 15). |
(15, 15)
|
of_max_level
|
int
|
0-based maximal pyramid level number. If set to 0, pyramids are not used (single level), if set to 1, two levels are used, and so on. If pyramids are passed to input then the algorithm will use as many levels as pyramids have but no more than |
2
|
of_criteria
|
tuple
|
Specifies the termination criteria of the iterative search algorithm (after the specified maximum number of iterations criteria.maxCount or when the search window moves by less than criteria.epsilon). Defaults to (cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 10, 0.03). |
(TERM_CRITERIA_EPS | TERM_CRITERIA_COUNT, 10, 0.03)
|
use_gpu
|
bool
|
Whether to attempt GPU (CUDA) acceleration using |
False
|
target_name
|
str
|
Target output name for the video. Defaults to None (which assumes that the input filename with the suffix "_flow_sparse" should be used). |
None
|
overwrite
|
bool
|
Whether to allow overwriting existing files or to automatically increment target filenames to avoid overwriting. Defaults to True. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
MgVideo |
'musicalgestures.MgVideo'
|
A new MgVideo pointing to the output video file. |
Source code in musicalgestures/_flow.py
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 | |