All Projects → togheppi → pix2pix

togheppi / pix2pix

Licence: other
PyTorch implementation of Image-to-Image Translation with Conditional Adversarial Nets (pix2pix)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pix2pix

Pix2Pix
Image to Image Translation using Conditional GANs (Pix2Pix) implemented using Tensorflow 2.0
Stars: ✭ 29 (-19.44%)
Mutual labels:  pix2pix, image-translation, cityscapes
ganslate
Simple and extensible GAN image-to-image translation framework. Supports natural and medical images.
Stars: ✭ 17 (-52.78%)
Mutual labels:  pix2pix, image-translation, image-to-image-translation
Pix2pix
Image-to-image translation with conditional adversarial nets
Stars: ✭ 8,765 (+24247.22%)
Mutual labels:  pix2pix, image-to-image-translation
Pytorch Pix2pix
Pytorch implementation of pix2pix for various datasets.
Stars: ✭ 74 (+105.56%)
Mutual labels:  pix2pix, image-translation
Munit
Multimodal Unsupervised Image-to-Image Translation
Stars: ✭ 2,404 (+6577.78%)
Mutual labels:  pix2pix, image-translation
pix2pix-tensorflow
A minimal tensorflow implementation of pix2pix (Image-to-Image Translation with Conditional Adversarial Nets - https://phillipi.github.io/pix2pix/).
Stars: ✭ 22 (-38.89%)
Mutual labels:  pix2pix, image-translation
Img2imggan
Implementation of the paper : "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 49 (+36.11%)
Mutual labels:  pix2pix, image-translation
Deblurgan
Image Deblurring using Generative Adversarial Networks
Stars: ✭ 2,033 (+5547.22%)
Mutual labels:  pix2pix, image-to-image-translation
Pix2pixhd
Synthesizing and manipulating 2048x1024 images with conditional GANs
Stars: ✭ 5,553 (+15325%)
Mutual labels:  pix2pix, image-to-image-translation
chainer-pix2pix
Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks
Stars: ✭ 40 (+11.11%)
Mutual labels:  pix2pix, image-translation
Guided-I2I-Translation-Papers
Guided Image-to-Image Translation Papers
Stars: ✭ 117 (+225%)
Mutual labels:  image-translation, image-to-image-translation
CoMoGAN
CoMoGAN: continuous model-guided image-to-image translation. CVPR 2021 oral.
Stars: ✭ 139 (+286.11%)
Mutual labels:  image-translation, image-to-image-translation
Unit
Unsupervised Image-to-Image Translation
Stars: ✭ 1,809 (+4925%)
Mutual labels:  pix2pix, image-translation
SMIT
Pytorch implemenation of Stochastic Multi-Label Image-to-image Translation (SMIT), ICCV Workshops 2019.
Stars: ✭ 37 (+2.78%)
Mutual labels:  image-translation, image-to-image-translation
overlord
Official pytorch implementation of "Scaling-up Disentanglement for Image Translation", ICCV 2021.
Stars: ✭ 35 (-2.78%)
Mutual labels:  image-translation, image-to-image-translation
BicycleGAN
Tensorflow implementation of the NIPS paper "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 30 (-16.67%)
Mutual labels:  pix2pix, image-translation
Samples-NET.Core-MVC-CSharp
ASP.NET Core 2.0 MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 28 (-22.22%)
Mutual labels:  maps
HealthCare-Scan-Nearby-Hospital-Locations
I developed this android application to help beginner developers to know how to use Google Maps API and how to convert JSON data into Java Object.
Stars: ✭ 23 (-36.11%)
Mutual labels:  maps
django-graphql-geojson
GeoJSON support for Graphene Django
Stars: ✭ 61 (+69.44%)
Mutual labels:  maps
map-kit-android
An extensive framework for map development in Android.
Stars: ✭ 44 (+22.22%)
Mutual labels:  maps

pix2pix

PyTorch implementation of Image-to-Image Translation with Conditional Adversarial Nets (pix2pix)

Generating Facades dataset

  • Image size: 256x256
  • Number of training images: 400
  • Number of test images: 106

Results

  • Adam optimizer is used. Learning rate = 0.0002, batch size = 1, # of epochs = 200:
GAN losses
( AE0000 : Generator / FF8900 : Discriminator)
Generated images
(Input / Generated / Target)
  • Generated images using test data

    1st column: Input / 2nd column: Generated / 3rd column: Target

Generating Cityscapes dataset

  • Image size: 256x256
  • Number of training images: 2,975
  • Number of test images: 500

Results

  • Adam optimizer is used. Learning rate = 0.0002, batch size = 1, # of epochs = 200:
GAN losses
( AE0000 : Generator / FF8900 : Discriminator)
Generated images
(Input / Generated / Target)
  • Generated images using test data

    1st column: Input / 2nd column: Generated / 3rd column: Target

Generating Maps dataset

  • Image is resized to 256x256 image (Original size: 600x600)
  • Number of training images: 1,096
  • Number of test images: 1,098

Results

  • Adam optimizer is used. Learning rate = 0.0002, batch size = 1, # of epochs = 200:
GAN losses
( AE0000 : Generator / FF8900 : Discriminator)
Generated images
(Input / Generated / Target)
  • Generated images using test data

    1st column: Input / 2nd column: Generated / 3rd column: Target

Generating Edges2Shoes dataset

  • Image size: 256x256
  • Number of training images: 49,825
  • Number of test images: 200

Results

  • Adam optimizer is used. Learning rate = 0.0002, batch size = 4, # of epochs = 15:
GAN losses
( AE0000 : Generator / FF8900 : Discriminator)
Generated images
(Input / Generated / Target)
  • Generated images using test data

    1st column: Input / 2nd column: Generated / 3rd column: Target

Generating Edges2Handbags dataset

  • Image size: 256x256
  • Number of training images: 138,567
  • Number of test images: 200

Results

  • Adam optimizer is used. Learning rate = 0.0002, batch size = 4, # of epochs = 15:
GAN losses
( AE0000 : Generator / FF8900 : Discriminator)
Generated images
(Input / Generated / Target)
  • Generated images using test data

    1st column: Input / 2nd column: Generated / 3rd column: Target

References

  1. https://github.com/mrzhu-cool/pix2pix-pytorch
  2. https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix
  3. https://github.com/znxlwm/pytorch-pix2pix
  4. https://affinelayer.com/pix2pix/
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].