All Projects → MingtaoGuo → CartoonGAN-tensorflow

MingtaoGuo / CartoonGAN-tensorflow

Licence: MIT license
Simple code implement the paper of CartoonGAN(CVPR2018)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to CartoonGAN-tensorflow

Data Augmentation Review
List of useful data augmentation resources. You will find here some not common techniques, libraries, links to github repos, papers and others.
Stars: ✭ 785 (+5507.14%)
Mutual labels:  generative-adversarial-network, style-transfer
Hidt
Official repository for the paper "High-Resolution Daytime Translation Without Domain Labels" (CVPR2020, Oral)
Stars: ✭ 513 (+3564.29%)
Mutual labels:  generative-adversarial-network, style-transfer
CS231n
PyTorch/Tensorflow solutions for Stanford's CS231n: "CNNs for Visual Recognition"
Stars: ✭ 47 (+235.71%)
Mutual labels:  generative-adversarial-network, style-transfer
favorite-research-papers
Listing my favorite research papers 📝 from different fields as I read them.
Stars: ✭ 12 (-14.29%)
Mutual labels:  generative-adversarial-network, style-transfer
Tsit
[ECCV 2020 Spotlight] A Simple and Versatile Framework for Image-to-Image Translation
Stars: ✭ 141 (+907.14%)
Mutual labels:  generative-adversarial-network, style-transfer
Cyclegan Qp
Official PyTorch implementation of "Artist Style Transfer Via Quadratic Potential"
Stars: ✭ 59 (+321.43%)
Mutual labels:  generative-adversarial-network, style-transfer
Few Shot Patch Based Training
The official implementation of our SIGGRAPH 2020 paper Interactive Video Stylization Using Few-Shot Patch-Based Training
Stars: ✭ 313 (+2135.71%)
Mutual labels:  generative-adversarial-network, style-transfer
Deep Learning With Python
Example projects I completed to understand Deep Learning techniques with Tensorflow. Please note that I do no longer maintain this repository.
Stars: ✭ 134 (+857.14%)
Mutual labels:  generative-adversarial-network, style-transfer
gans-2.0
Generative Adversarial Networks in TensorFlow 2.0
Stars: ✭ 76 (+442.86%)
Mutual labels:  generative-adversarial-network, style-transfer
Wasserstein2GenerativeNetworks
PyTorch implementation of "Wasserstein-2 Generative Networks" (ICLR 2021)
Stars: ✭ 38 (+171.43%)
Mutual labels:  generative-adversarial-network, style-transfer
csgan
Task-Aware Compressed Sensing Using Generative Adversarial Networks (published in AAAI18)
Stars: ✭ 25 (+78.57%)
Mutual labels:  generative-adversarial-network
linguistic-style-transfer-pytorch
Implementation of "Disentangled Representation Learning for Non-Parallel Text Style Transfer(ACL 2019)" in Pytorch
Stars: ✭ 55 (+292.86%)
Mutual labels:  style-transfer
zero-shot-style-transfer
TensorFlow Implementation of Several Zero-Shot Image Style Transfer Methods
Stars: ✭ 14 (+0%)
Mutual labels:  style-transfer
deep dream
DeepDream psychodelic image generator.
Stars: ✭ 39 (+178.57%)
Mutual labels:  style-transfer
STYLER
Official repository of STYLER: Style Factor Modeling with Rapidity and Robustness via Speech Decomposition for Expressive and Controllable Neural Text to Speech, INTERSPEECH 2021
Stars: ✭ 105 (+650%)
Mutual labels:  style-transfer
Android-Tensorflow-Style-Transfer
Based on tensorflow's style transfer Android project.
Stars: ✭ 18 (+28.57%)
Mutual labels:  style-transfer
WGAN-GP-TensorFlow
TensorFlow implementations of Wasserstein GAN with Gradient Penalty (WGAN-GP), Least Squares GAN (LSGAN), GANs with the hinge loss.
Stars: ✭ 42 (+200%)
Mutual labels:  generative-adversarial-network
pytorch-CycleGAN
Pytorch implementation of CycleGAN.
Stars: ✭ 39 (+178.57%)
Mutual labels:  generative-adversarial-network
lewis
Official code for LEWIS, from: "LEWIS: Levenshtein Editing for Unsupervised Text Style Transfer", ACL-IJCNLP 2021 Findings by Machel Reid and Victor Zhong
Stars: ✭ 22 (+57.14%)
Mutual labels:  style-transfer
ganslate
Simple and extensible GAN image-to-image translation framework. Supports natural and medical images.
Stars: ✭ 17 (+21.43%)
Mutual labels:  style-transfer

CartoonGAN-tensorflow

Simple code implement the paper of CartoonGAN

Introduction

This simple code mainly implement the paper about CartoonGAN, which is published at CVPR2018. This paper mainly address the problem of styling the nature images to cartoon by using GANs.

There are three contributions in the paper:

  1. Removing the clear edge of original cartoon images as a new datasets
  2. Using high-level feature maps in vgg19 to reconstruct the content
  3. Initializing the generator by reconstructing the nature images

Results of the paper

How to use the code

Python packages you need

  1. python 3.x
  2. tensorflow 1.4.0
  3. pillow
  4. scipy
  5. cv2
  6. numpy

Process of using

  1. Download the cartoon movie, then using 'vedio2img.py' to extract the cartoon images from the cartoon movie. Finally, put the extracted cartoon imges into the folder 'c'.
  2. Using 'remove_clear_edge.py' to remove the extracted cartoon images' clear edge as a new datasets, and then put the unclear edge cartoon images into the folder 'e'
  3. Download the nature image datasets(we use MSCOCO here, not Flicker), and then put the unzipped MSCOCO datasets into the folder 'MSCOCO'.

Results of our code

I'm sorry, this code is under training ..........

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].