All Projects → wuhuikai → chainer-pix2pix

wuhuikai / chainer-pix2pix

Licence: other
Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to chainer-pix2pix

Pytorch Pix2pix
Pytorch implementation of pix2pix for various datasets.
Stars: ✭ 74 (+85%)
Mutual labels:  pix2pix, image-translation
Igan
Interactive Image Generation via Generative Adversarial Networks
Stars: ✭ 3,845 (+9512.5%)
Mutual labels:  computer-graphics, pix2pix
Unit
Unsupervised Image-to-Image Translation
Stars: ✭ 1,809 (+4422.5%)
Mutual labels:  pix2pix, image-translation
pix2pix
PyTorch implementation of Image-to-Image Translation with Conditional Adversarial Nets (pix2pix)
Stars: ✭ 36 (-10%)
Mutual labels:  pix2pix, image-translation
Cyclegan
Software that can generate photos from paintings, turn horses into zebras, perform style transfer, and more.
Stars: ✭ 10,933 (+27232.5%)
Mutual labels:  computer-graphics, pix2pix
pix2pix-tensorflow
A minimal tensorflow implementation of pix2pix (Image-to-Image Translation with Conditional Adversarial Nets - https://phillipi.github.io/pix2pix/).
Stars: ✭ 22 (-45%)
Mutual labels:  pix2pix, image-translation
Selectiongan
[CVPR 2019 Oral] Multi-Channel Attention Selection GAN with Cascaded Semantic Guidance for Cross-View Image Translation
Stars: ✭ 366 (+815%)
Mutual labels:  computer-graphics, image-translation
Munit
Multimodal Unsupervised Image-to-Image Translation
Stars: ✭ 2,404 (+5910%)
Mutual labels:  pix2pix, image-translation
Pix2pix
Image-to-image translation with conditional adversarial nets
Stars: ✭ 8,765 (+21812.5%)
Mutual labels:  computer-graphics, pix2pix
Pix2pixhd
Synthesizing and manipulating 2048x1024 images with conditional GANs
Stars: ✭ 5,553 (+13782.5%)
Mutual labels:  computer-graphics, pix2pix
BicycleGAN
Tensorflow implementation of the NIPS paper "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 30 (-25%)
Mutual labels:  pix2pix, image-translation
Gp Gan
Official Chainer implementation of GP-GAN: Towards Realistic High-Resolution Image Blending (ACMMM 2019, oral)
Stars: ✭ 317 (+692.5%)
Mutual labels:  chainer, computer-graphics
ganslate
Simple and extensible GAN image-to-image translation framework. Supports natural and medical images.
Stars: ✭ 17 (-57.5%)
Mutual labels:  pix2pix, image-translation
Img2imggan
Implementation of the paper : "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 49 (+22.5%)
Mutual labels:  pix2pix, image-translation
Pix2Pix
Image to Image Translation using Conditional GANs (Pix2Pix) implemented using Tensorflow 2.0
Stars: ✭ 29 (-27.5%)
Mutual labels:  pix2pix, image-translation
Awesome Image Translation
A collection of awesome resources image-to-image translation.
Stars: ✭ 408 (+920%)
Mutual labels:  computer-graphics, image-translation
Pytorch Cyclegan And Pix2pix
Image-to-Image Translation in PyTorch
Stars: ✭ 16,477 (+41092.5%)
Mutual labels:  computer-graphics, pix2pix
Chainer Pix2pix
chainer implementation of pix2pix
Stars: ✭ 130 (+225%)
Mutual labels:  chainer, pix2pix
FastMassSpring
Interactive cloth simulator using the method described in the SIGGRAPH paper "Fast Simulation of Mass-Spring Systems" by Liu, T., Bargteil, A. W., Obrien, J. F., & Kavan, L.
Stars: ✭ 170 (+325%)
Mutual labels:  computer-graphics
Visual-Attention-Model
Chainer implementation of Deepmind's Visual Attention Model paper
Stars: ✭ 27 (-32.5%)
Mutual labels:  chainer

Image-to-Image Translation (Chainer)

Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks, it's transplanted from pix2pix.

Result

Step by Step

Download Datasets --- Cityscapes

Sign up, Log in & Download gtFine_trainvaltest.zip & leftImg8bit_trainvaltest.zip from cityscapes

Split Dataset into train, val & test set

    python split_data_sets.py --root [Image Folder] --list [List Folder]  

Note: Run python split_data_sets.py -h for more details.

Combine A & B into a single image

    python combine_A_and_B.py --list [List Path] --save_dir [Save Folder]

Generate list file for train, val & test dataset

	ls train > train.txt
	ls val > val.txt
	ls test > test.txt

Note: Run commands above in folder containing train, val & test subfolder

Train

	python train.py

Note: Run python train.py -h for more options.

Test

	python test.py

Note: Run python test.py -h for more options.

Network Architecture

Generator

U-net

Discriminator

PatchGAN, FOV is determined by n_layers.

Acknowledgments

Code borrows heavily from Chainer: DCGAN.

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].