<
CartoonGAN : Generative Adversarial Networks for Photo Catoonization
>
上一篇

포트폴리오용 포스팅
下一篇

OpenCV 주요 기능 정리

CartoonGAN : Generative Adversarial Networks for Photo Catoonization

원논문 주소 : https://ieeexplore.ieee.org/document/8579084

OpenCV를 모바일에서 사용은 하게 만들었는데 이걸 어떻게 활용할까 고민중 보게된 논문이다
이 U-GAT-IT을 먼저 보긴 했었는데 대충봐서.. 다시볼겸 기초부터 다시보기로 했다.
참고로 조금 항마력이 필요하다

Abstract

2. Related Work

Non-photorealistic rendering (NPR)

Stylization with neural networks

Image synthesis with GANs

3. CartoonGAN

3.1 CartoonGAN Architecture

Table1

3.2 Loss function

3.2.1 Adversarial Loss

\(\mathcal{L}_{adv}(G,D) = \mathbb{E}_{c_i \sim S_{data(c)}[\log D(c_i)]} + \mathbb{E}_{e_i \sim S_{data(e)}[\log (1-D(e_i))]} + \mathbb{E}_{p_k \sim S_{data(p)}[\log (1-D(G(p_k)))]}\)

3.2.1 Content Loss

\(\mathcal{L}_{con}(G,D) = \mathbb{E}_{p_i\sim S_{data(p)}}[||VGG_l(G(p_i)) - VGG_l(p_i) ||_1]\)

3.3. Initialization phase

4. Experiments

4.1 Data

4.2 Comparison with state of the art

Table1

4.3 Roles of components in loss function

Table1

5. Conclusion and Future

Top
Foot