๐ Despill ์ด๋
Spill์ Foreground(ํผ์ฌ์ฒด)์ ์์ชฝ์ผ๋ก Key ์ปฌ๋ฌ๊ฐ ๋ฌป์ด๋๋ ํ์์ด๋ค. ์กฐ๋ช ์ด๋ ํผ์ฌ์ฒด์ ์ฌ์ง์ ๋ฐ๋ผ ๋ฐ์ํ ์ ์๋ค.
Spill Suppression, ์ผ๋ช Despill์ ์ด๋ฐ Spill์ ์ ๊ฑฐํ๊ธฐ ์ํ ๊ธฐ๋ฅ์ด๋ค.
์ด ๊ธ์ Despill ๊ธฐ๋ฒ์ ๋ํ ์กฐ์ฌ๋ฅผ ํ๋ฉด์ ์๊ฒ ๋ Despill ์๊ณ ๋ฆฌ์ฆ์ ๋ํ ์ ๋ฆฌ์ด๋ค.
๐ Despill Algorithm 1
Green ์ฑ๋์ด Red, Blue ์ฑ๋์ ํ๊ท ๋ณด๋ค ํฌ๋ค๋ฉด Red, Blue ์ฑ๋์ ํ๊ท ์ ๋ธ ๊ฒฐ๊ณผ๋ฅผ ์ฌ์ฉํ์ฌ ์์ฐ์ค๋ฝ๊ฒ Green์ ์ ๊ฑฐํ๋ค. ๊ทธ๋ ์ง ์์ ๊ฒฝ์ฐ ๊ธฐ์กด Green ์ฑ๋์ ์ฌ์ฉํ๋ค.
์ธ๋ฆฌ์ผ ๋ด ๊ธฐ๋ณธ์ผ๋ก ์ ๊ณตํ๋ ํฌ๋ก๋งํค ํจ์์ Despill๋ ์ด ์๊ณ ๋ฆฌ์ฆ์ ์ฌ์ฉํ๋ค. ๊ฐ์ฅ ๋ง์ด ์ฐ์ด๋ ๋ฐฉ๋ฒ์ธ ๊ฒ ๊ฐ๋ค.
g>((r+b)/2)?((r+b)/2):g
'Digital Compositting for film and video' Chapter 5์์ ์๊ฐํ๋ Despill Algorithms๋ ์ด ๋ฐฉ๋ฒ์ด๋ค.
์ด ๋ฐฉ๋ฒ์ ์ฌ์ฉํ๋ ๋ค๋ฅธ Tools : Primatte(Nuke), DespillTK(Advanced despill toolset by Timur Khodzhaev's)
๐ Despill Algorithm 2
YCgCo : YCbCr์ ๋นํด ๋ ๊ฐ๋จํ๊ณ ๋น ๋ฅธ ๊ณ์ฐ, ์์ถ ์ฑ๋ฅ์ด ๋๋ค๋ ์ฅ์ ์ด ์์ผ๋ฉฐ ์์ ๊ณ์ธต ์ฌ์ด์ ์๊ด์ฑ๋ ๋์ฑ ๋ฎ๋ค. Y๋ ํ๋, Cg๋ ๋ น์ ์์ฐจ, Co๋ ์ฃผํฉ์ ์์ฐจ๋ฅผ ๊ฐ์ง๊ณ ์๋ค.
RGB๋ฅผ YCgCo ์ปฌ๋ฌ์คํ์ด์ค๋ก ๋ณํํ์ฌ ์ฑ๋ ๊ฐ์ ํํํ ํ๋ค. ํค ์ปฌ๋ฌ์ ๋ด์ (dot product)์ ํตํด YCgCo ๊ณต๊ฐ์์ ํค ์ปฌ๋ฌ์ ํฌ๋ก๋ง ๊ฐ(yz)์ ํด๋นํ๋ ๋ถ๋ถ์ ๊ตฌํ๋ค. ๊ตฌํ ๊ฐ์ ํค ์ปฌ๋ฌ์ ํค ์ปฌ๋ฌ ์์ ์ ๋ด์ ๊ฐ์ผ๋ก ๋๋์ด ์ ๊ทํ ํ๊ณ ์ด ์ ๊ทํ ๋ ๊ฐ(sub)๋ฅผ ์ฌ์ฉํ์ฌ ํค ์ปฌ๋ฌ์ ๋ฐ๋ ๋ฐฉํฅ์ผ๋ก ์์์ ์ด๋ ์ํจ๋ค.
์ฆ, ํค ์ปฌ๋ฌ์ ๋ฐ๋ ๋ฐฉํฅ์ผ๋ก ์์์ ์ด๋์์ผ ํค ์ปฌ๋ฌ ์ฃผ๋ณ์ Spill์ ์ ๊ฑฐํ๋ค. ๋ง์ง๋ง์ผ๋ก ์์ ๋ YCgCo ๊ฐ์ ๋ค์ RGB๋ก ๋ณํํ์ฌ ์ต์ข ๊ฐ์ ์ป๋๋ค.
half3 ycgco = RGBYCgCo(rgb);
half sub = dot(_KeyCgCo, ycgco.yz) / dot(_KeyCgCo, _KeyCgCo);
ycgco.yz -= _KeyCgCo * (sub+0.5) * _SpillRemoval;
rgb = YCgCoRGB(ycgco);
UnityPhotoTool/Assets/Klak/Video/ProcAmp/Shaders/ProcAmp.cginc at master · GimChuang/UnityPhotoTool
Scripts for taking screenshots with countdown animation and chroma keying in Unity. ๐ณ๐ - GimChuang/UnityPhotoTool
github.com
๐ Ref.
(์ถ์ฒ!!) Deconstructing Despill Algorithms : https://benmcewan.com/blog/2018/05/20/understanding-despill-algorithms/
LMS (Long, Medium, Short) : https://en.wikipedia.org/wiki/LMS_color_space#CAT02
RGB to YCgCo : https://www.shadertoy.com/view/4lBXDR
YCbCr to RGB : https://gist.github.com/sortofsleepy/cf6e36fc1f5e5c2355fceaaa4a42e1f1
'ํฉ์ฑ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Ultimatte 12 (1) (0) | 2024.10.24 |
---|---|
Ultimatte 12 (2) (1) | 2024.10.24 |