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
230
Seam Carving 算法
如何能改变图像大小的同时尽可能保留图片主体? Seam Carving 算法可以解决这个问题。
shhhz
September 29, 2021
Tweet
Share
More Decks by shhhz
See All by shhhz
概率与随机
shhhz
0
39
游戏中的奥秘
shhhz
0
43
正则表达式
shhhz
0
30
Featured
See All Featured
Six Lessons from altMBA
skipperchong
27
3.5k
RailsConf 2023
tenderlove
29
940
Bash Introduction
62gerente
609
210k
Measuring & Analyzing Core Web Vitals
bluesmoon
4
180
A Modern Web Designer's Workflow
chriscoyier
693
190k
Faster Mobile Websites
deanohume
305
30k
Typedesign – Prime Four
hannesfritz
40
2.4k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
460
The Art of Programming - Codeland 2020
erikaheidi
53
13k
Imperfection Machines: The Place of Print at Facebook
scottboms
266
13k
A Philosophy of Restraint
colly
203
16k
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!