• Stars
    star
    127
  • Rank 281,063 (Top 6 %)
  • Language
    Python
  • License
    Other
  • Created over 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[BMVC 2020 Oral] Bipartite Graph Reasoning GANs for Person Image Generation

License CC BY-NC-SA 4.0 Python 3.6 Packagist Last Commit Maintenance Contributing Ask Me Anything !

Contents

BiGraphGAN

| Project | Paper |
Bipartite Graph Reasoning GANs for Person Image Generation
Hao Tang12, Song Bai2, Philip H.S. Torr2, Nicu Sebe13.
1University of Trento, Italy, 2University of Oxford, UK, 3Huawei Research Ireland, Ireland.
In BMVC 2020 Oral.
The repository offers the official implementation of our paper in PyTorch.

In the meantime, check out our related ACM MM 2019 paper Cycle In Cycle Generative Adversarial Networks for Keypoint-Guided Image Generation, ECCV 2020 paper XingGAN for Person Image Generation, ICCV 2021 paper Intrinsic-Extrinsic Preserved GANs for Unsupervised 3D Pose Transfer, and ICIAP 2021 paper Graph-based Generative Face Anonymisation with Pose Preservation

Motivation

Framework

Comparison Results


License

Creative Commons License
Copyright (C) 2020 University of Trento, Italy.

All rights reserved. Licensed under the CC BY-NC-SA 4.0 (Attribution-NonCommercial-ShareAlike 4.0 International)

The code is released for academic research use only. For commercial use, please contact [email protected].

Installation

Clone this repo.

git clone https://github.com/Ha0Tang/BiGraphGAN
cd BiGraphGAN/

This code requires PyTorch 1.0.0 and python 3.6.9+. Please install the following dependencies:

  • pytorch 1.0.0
  • torchvision
  • numpy
  • scipy
  • scikit-image
  • pillow
  • pandas
  • tqdm
  • dominate

To reproduce the results reported in the paper, you need to run experiments on NVIDIA DGX1 with 4 32GB V100 GPUs for DeepFashion, and 1 32GB V100 GPU for Market-1501.

Dataset Preparation

Please follow SelectionGAN to directly download both Market-1501 and DeepFashion datasets.

This repository uses the same dataset format as SelectionGAN and XingGAN. so you can use the same data for all these methods.

Generating Images Using Pretrained Model

Market-1501

cd scripts/
sh download_bigraphgan_model.sh market
cd ..
cd market_1501/

Then,

  1. Change several parameters in test_market_pretrained.sh.
  2. Run sh test_market_pretrained.sh for testing.

DeepFashion

cd scripts/
sh download_bigraphgan_model.sh deepfashion
cd ..
cd deepfashion/

Then,

  1. Change several parameters in test_deepfashion_pretrained.sh.
  2. Run sh test_deepfashion_pretrained.sh for testing.

Train and Test New Models

Market-1501

  1. Go to the market_1501 folder.
  2. Change several parameters in train_market.sh.
  3. Run sh train_market.sh for training.
  4. Change several parameters in test_market.sh.
  5. Run sh test_market.sh for testing.

DeepFashion

  1. Go to the deepfashion folder.
  2. Change several parameters in train_deepfashion.sh.
  3. Run sh train_deepfashion.sh for training.
  4. Change several parameters in test_deepfashion.sh.
  5. Run sh test_deepfashion.sh for testing.

Evaluation

We adopt SSIM, mask-SSIM, IS, mask-IS, and PCKh for evaluation of Market-1501. SSIM, IS, PCKh for DeepFashion. Please refer to Pose-Transfer for more details.

Acknowledgments

This source code is inspired by both Pose-Transfer, and SelectionGAN.

Related Projects

XingGAN | GestureGAN | C2GAN | SelectionGAN | Guided-I2I-Translation-Papers

Citation

If you use this code for your research, please cite our papers.

BiGraphGAN

@article{tang2022bipartite,
  title={Bipartite Graph Reasoning GANs for Person Pose and Facial Image Synthesis},
  author={Tang, Hao and Shao, Ling and Torr, Philip HS and Sebe, Nicu},
  journal={International Journal of Computer Vision (IJCV)},
  year={2022}
}

@inproceedings{tang2020bipartite,
  title={Bipartite Graph Reasoning GANs for Person Image Generation},
  author={Tang, Hao and Bai, Song and Torr, Philip HS and Sebe, Nicu},
  booktitle={BMVC},
  year={2020}
}

If you use the original XingGAN, GestureGAN, C2GAN, and SelectionGAN model, please cite the following papers:

XingGAN

@inproceedings{tang2020xinggan,
  title={XingGAN for Person Image Generation},
  author={Tang, Hao and Bai, Song and Zhang, Li and Torr, Philip HS and Sebe, Nicu},
  booktitle={ECCV},
  year={2020}
}

GestureGAN

@article{tang2019unified,
  title={Unified Generative Adversarial Networks for Controllable Image-to-Image Translation},
  author={Tang, Hao and Liu, Hong and Sebe, Nicu},
  journal={IEEE Transactions on Image Processing (TIP)},
  year={2020}
}

@inproceedings{tang2018gesturegan,
  title={GestureGAN for Hand Gesture-to-Gesture Translation in the Wild},
  author={Tang, Hao and Wang, Wei and Xu, Dan and Yan, Yan and Sebe, Nicu},
  booktitle={ACM MM},
  year={2018}
}

C2GAN

@article{tang2021total,
  title={Total Generate: Cycle in Cycle Generative Adversarial Networks for Generating Human Faces, Hands, Bodies, and Natural Scenes},
  author={Tang, Hao and Sebe, Nicu},
  journal={IEEE Transactions on Multimedia (TMM)},
  year={2021}
}

@inproceedings{tang2019cycleincycle,
  title={Cycle In Cycle Generative Adversarial Networks for Keypoint-Guided Image Generation},
  author={Tang, Hao and Xu, Dan and Liu, Gaowen and Wang, Wei and Sebe, Nicu and Yan, Yan},
  booktitle={ACM MM},
  year={2019}
}

SelectionGAN

@article{tang2022multi,
  title={Multi-channel attention selection gans for guided image-to-image translation},
  author={Tang, Hao and Torr, Philip HS and Sebe, Nicu},
  journal={Transactions on Pattern Analysis and Machine Intelligence (TPAMI)},
  year={2022}
}

@inproceedings{tang2019multi,
  title={Multi-channel attention selection gan with cascaded semantic guidance for cross-view image translation},
  author={Tang, Hao and Xu, Dan and Sebe, Nicu and Wang, Yanzhi and Corso, Jason J and Yan, Yan},
  booktitle={CVPR},
  year={2019}
}

Contributions

If you have any questions/comments/bug reports, feel free to open a github issue or pull a request or e-mail to the author Hao Tang ([email protected]).

Collaborations

I'm always interested in meeting new people and hearing about potential collaborations. If you'd like to work together or get in contact with me, please email [email protected]. Some of our projects are listed here.


Success is the sum of small efforts, repeated day in and day out.

More Repositories

1

AttentionGAN

AttentionGAN for Unpaired Image-to-Image Translation & Multi-Domain Image-to-Image Translation
Python
598
star
2

SelectionGAN

[CVPR 2019 Oral] Multi-Channel Attention Selection GAN with Cascaded Semantic Guidance for Cross-View Image Translation
Python
454
star
3

XingGAN

[ECCV 2020] XingGAN for Person Image Generation
Python
226
star
4

GestureGAN

[ACM MM 2018 Oral] GestureGAN for Hand Gesture-to-Gesture Translation in the Wild
Python
171
star
5

LGGAN

[CVPR 2020] Local Class-Specific and Global Image-Level Generative Adversarial Networks for Semantic-Guided Scene Generation
Python
142
star
6

Guided-I2I-Translation-Papers

Guided Image-to-Image Translation Papers
128
star
7

DAGAN

[ACM MM 2020] Dual Attention GANs for Semantic Image Synthesis
Python
108
star
8

HandGestureRecognition

[Neurocomputing 2019] Fast and Robust Dynamic Hand Gesture Recognition via Key Frames Extraction and Feature Fusion
C++
91
star
9

ECGAN

Edge Guided GANs with Semantic Preserving for Semantic Image Synthesis
Python
77
star
10

C2GAN

[ACM MM 2019 Oral] Cycle In Cycle Generative Adversarial Networks for Keypoint-Guided Image Generation
Python
68
star
11

AsymmetricGAN

[ACCV 2018 Oral] Dual Generator Generative Adversarial Networks for Multi-Domain Image-to-Image Translation
Python
42
star
12

DDLCN

[WACV 2019 Oral] Deep Micro-Dictionary Learning and Coding Network
C++
36
star
13

DPGAN

[TIP 2021] Layout-to-Image Translation with Double Pooling Generative Adversarial Networks
Python
16
star
14

HCANet

Python
13
star
15

ASGAN

[FG 2019 Oral] Attribute-Guided Sketch Generation
MATLAB
11
star
16

Ha0Tang

4
star
17

Ha0Tang.github.io

homepage
HTML
4
star
18

LandmarkGAN

4
star