Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Seam Carving 算法
Search
shhhz
September 29, 2021
0
300
Seam Carving 算法
如何能改变图像大小的同时尽可能保留图片主体? Seam Carving 算法可以解决这个问题。
shhhz
September 29, 2021
Tweet
Share
More Decks by shhhz
See All by shhhz
概率与随机
shhhz
0
50
游戏中的奥秘
shhhz
0
54
正则表达式
shhhz
0
35
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
A Modern Web Designer's Workflow
chriscoyier
697
190k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
630
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
610
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
190
55k
The World Runs on Bad Software
bkeepers
PRO
72
11k
Principles of Awesome APIs and How to Build Them.
keavy
127
17k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
Why Our Code Smells
bkeepers
PRO
340
57k
Transcript
Seam Carving Algorithm @Rick Sun
Aspect Ratio Changed Crop Original Scale
Content-aware Resizing Seam Carving Original
Example
Humans Vision 落款 富⼠⼭ 波浪
Computer Vision
Pixel Colors
Energy e(x) 192 Energy: 值越⼤,表示该像素与周围像素对比越⼤。 Energy function
Energy Map Energy function
Energy Map
? How to resize? 哪些像素需要被删除?
1. Optimal 依次删除 energy 最小的像素
2. Pixel 每⾏移除等量 energy 最小的像素
3. Seam 每次移除⼀条 energy 之和最小的 seam
3. Seam 什么是连续? 8 连通路径(8-connected path )
Seam Carving Recipe 1. 计算每个像素的 energy, ⽣成 energy map。 2.
找出 seam 并删除。 3. 未达到终⽌条件,回到第 1 步。
Implements Energy Function 01 Find Seam 02
Energy Function 1. 2.
Energy Function 3. Image Kernels RGB -> Grayscale Grayscale =
(R + G + B ) / 3. Grayscale = 0.299R + 0.587G + 0.114B Kernels
Refer: https://setosa.io/ev/image-kernels/
Implements Energy Function 01 Find Seam 02
Find Seam
Find Seam Brute-force search O(w * 3^h) O(w + h)
The greedy approach
Dynamic Programming Those who can not remember the past are
condemned to repeat it.
Dynamic Programming Those who can not remember the past are
condemned to repeat it. Stairs Problem Go up one step or two steps at a time House Robber Problem • You are a robber who has found a block of houses to rob. • You cannot rob two adjacent houses.
Energy Map Find Seam Seam Energies ? 80+45 seam[i][j] =
EnergyMap[i][j] + Min(seam[i-1][j-1], seam[i-1][j], seam[i-1][j+1]) 45 405 35 275 1o5 25 100 25 40 5 20
Find Seam
Seam Energies 100 25 130 275 Find Seam interface SeamEnergyCell
{ i: number; j: number; energy: number; prev: SeamEnergyCell | null; } 45 35 50 10
Other Applications Object Label 01 Image Enlarging 02
Object Removal Set energy to -Infinity
Object Protect Set energy to +Infinity
Image Enlarging Repeat Seam Repeat K Seams
Top K Problem Find Top K largest numbers O(n log
n) 1. Sort 2. Heap sort
Heap • Max Heap Build Heap Get root Heapify O(
n) + kO(log n) • Min Heap 8 9 5 Build Heap K Add Heap if lt root 8 9 7 Add Skip O( k) + (n - k)O(log k)
3. Quick select Top K Problem O( n) K th?
Thanks!