automated video looping with progressive dynamism
play

Automated Video Looping with Progressive Dynamism CS448V: Lecture 5 - PDF document

Automated Video Looping with Progressive Dynamism CS448V: Lecture 5 Background Kwatra et al. Schodl et al. Pixel-Based Looping Pixel-Based Looping 1. Per-Pixel Loops Overview 2. Finding a Video Loop 3. Progressive Video Loops Per-Pixel


  1. Automated Video Looping with Progressive Dynamism CS448V: Lecture 5 Background Kwatra et al. Schodl et al.

  2. Pixel-Based Looping Pixel-Based Looping

  3. 1. Per-Pixel Loops Overview 2. Finding a Video Loop 3. Progressive Video Loops Per-Pixel Loops

  4. Problem Statement Problem Statement is defined by s x , p x

  5. Problem Statement = s x + (t - s x ) mod p x When t = 0, ɸ (x, t) = s x + (-s x ) mod p x = s x + (-s x ) + p x = p x Problem Statement is defined by s x , p x Loops for the entire video can be defined by:

  6. “Energy”: Cost of a Solution A solution consists of: Want to minimize: Spatiotemporal Penalty for choosing consistency static loops Spatiotemporal Consistency

  7. Spatial Consistency Compatibility of adjacent pixels x, z over loop Spatial Consistency t pixel z pixel x

  8. Spatial Consistency s z p = 1 t s x pixel z pixel x Spatial Consistency s z p = 1 t s x pixel z pixel x

  9. Spatial Consistency s z + 1 s z p = 2 t s x + 1 s x pixel z pixel x Spatial Consistency T = 2 p z = 2 s z p x = 1 s x t pixel z pixel x

  10. Spatial Consistency T = 2 p z = 2 s z p x = 1 s x t pixel z pixel x Spatial Consistency T = 2 p z = 2 s z p x = 1 s x t pixel z pixel x

  11. Spatial Consistency T = 2 p z = 2 s z p x = 1 s x t pixel z pixel x Temporal Consistency t p x = 3 s x pixel x

  12. A solution consists of: Spatiotemporal Penalty for choosing consistency static loops Static Loop Penalty 𝞭 static Constant penalty for Scale Factor assigning a pixel as static

  13. Attenuating Static Cost If original pixel had HIGH variance, a static loop is LESS natural If original pixel had LOW variance, a static loop is more acceptable Attenuating Static Penalty Measure of 𝞭 static temporal variation Median Absolute Gaussian weighted Deviation neighborhood t pixel x

  14. Attenuating Spatiotemporal Consistency Cost If original pixel had LOW variance, a loop with high variance is MORE perceptible If original pixel had HIGH variance, a loop with high variance is LESS perceptible Attenuating Spatiotemporal Consistency Cost If spatial variance is high, 𝞭 s should be small. If temporal variance is high, 𝞭 t should be small.

  15. Attenuating Spatial Consistency Cost Measure of spatial variance t If spatial variance is high, 𝞭 s should be small. pixel z pixel x Attenuating Temporal Consistency Cost Measure of temporal variance t If temporal variance is high, 𝞭 t should be small. pixel x

  16. Optimization: Solving for s = { s x } and p = { p x } High-Level Goal Each node is a pixel Want to assign each pixel a value (s x , p x ) where s x ∈ s , p x ∈ p Such that the “total energy” is minimized: Can formulate as Multilabel graph cut problem

  17. Review: Binary Graph Cut ● Each node: a pixel Goal: Partition nodes into two ● groups ● Want to minimize: s t ○ Energy = cost of partition ○ Could be formulated as max flow, min cut problem ● Global minima found in polynomial time Image credit: http://www.csd.uwo.ca/~yuri/Presentations/ECCV06_tutorial_partI_yuri.pdf Review: Binary Graph Cut Each node: a pixel ● ● Goal: Partition nodes into two groups ● Want to minimize: ○ Energy = cost of partition Could be formulated as max ○ flow, min cut problem ● Global minima found in polynomial time Image credit: http://www.csd.uwo.ca/~yuri/Presentations/ECCV06_tutorial_partI_yuri.pdf

  18. Multilabel Graph Cut ● Generalization of Binary Graph Cut (2 labels) ● NP-hard problem (3 or more labels) ● Alpha-expansion approximation algorithm ○ Within factor of 2 of global minima Example: 5 labels Multilabel Graph Cut Assign each pixel a label: (s x , p x ) ● ● From a set of candidate loops: { s } x { p } : (s = 0, p = 1) : (s = 3, p = 7) : (s = 5, p = 2) : (s = 2, p = 1) : (s = 3, p = 8)

  19. Multilabel Graph Cut on the whole search space doesn’t work Search algorithm gets stuck in local minima (green = shorter periods): Two-stage Approach

  20. Two-stage Approach Stage 1: Fix a single loop period for the entire video, and solve for the best start frames Saves computation cost for spatial consistency Output: for each period p , each pixel has an optimal start frame s : (s = 0, p=2 ) : (s = 1, p = 2 ) : (s = 2, p = 2 ) : (s = 3, p = 2 ) : (s = 4, p = 2 ) ⋮ S = {0, 1, … } P = {2} : (s = 0, p=3 ) : (s = 1, p = 3 ) : (s = 2, p = 3 ) : (s = 3, p = 3 ) : (s = 4, p = 3 ) ⋮ S = {0, 1, … } P = {3}

  21. Two-stage Approach Stage 2: Take optimal start frames from stage 1, and solve for optimal start frame + loop period for each pixel {s} | p=1 Choices for each pixel: |{p}| start frames (stage one) |{s}| start frames (p=1) From stage one: s 1 X p 1 = { (0, 2), (2, 3), (2, 4), … } Choices for stage two: S 1 X P 1 = s 1 X p 1 U { (0, 1), (1, 1), (2, 1), (3, 1), … } = { (0, 2), (2, 3), (2, 4), …, (0, 1), (1, 1), (2, 1), (3, 1), … } ... : (s = 0, p=2 ) : (s = 0, p=1 ) : (s = 1, p=1 ) : (s = 2, p=1 ) : (s = 2, p=3 ) : (s = 2, p=4 ) {s} | p=1 ⋮

  22. From stage one: s 2 X p 2 = { (3, 2), (5, 3), (2, 4), … } Choices for stage two: S 2 X P 2 = s 2 X p 2 U { (0, 1), (1, 1), (2, 1), (3, 1), … } = { (0, 2), (2, 3), (2, 4), …, (0, 1), (1, 1), (2, 1), (3, 1), … } ... : (s = 3, p=2 ) : (s = 0, p=1 ) : (s = 1, p=1 ) : (s = 2, p=1 ) : (s = 5, p=3 ) : (s = 2, p=4 ) {s} | p=1 ⋮ : (s = 1, p=2 ) {s} | p=1 : (s = 2, p=1 ) : (s = 4, p=3 ) : (s = 4, p=2 ) : (s = 1, p=1 ) : (s = 0, p=1 )

  23. Results Results

  24. Results Results

  25. Progressive Video Loops Example

  26. We Want to Control Dynamism Pixels: either static or looping Status: each pixel has an activation threshold a (if d > a , pixel is looping) Overview Recall C static: 1) Solve for most dynamic loop ( d = 1 ) a) C static to large value: 10 2) Create static loop ( d = 0 ) a) For each pixel, if static in most dynamic loop, leave as-is b) For rest of the pixels, solve for best static frame 3) For each pixel, find activation energy a a) Recursive binary partition over C static, re-computing d every time

  27. Definition of d Temporal Variation of Video Loop Equation to compute d for a Video Loop L Construct Static loop C static = 0; penalize differences between static pixel and median color value

  28. Recursive binary partition Recursive binary partition

  29. Recursive binary partition Recursive binary partition Binary graph cut problem!

  30. Recursive binary partition Bounds activation energies: Recursive binary partition If static: a > d If looping: a < d

  31. Recursive binary partition Recursive binary partition

  32. Recursive binary partition Continue until d or C static stop changing Set activation energies a to median of remaining bounds Ordering of progressive dynamism Re-order which pixels start looping first

  33. Result Results: Limitations

  34. Original Looping

  35. Thank you for listening!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend