All Projects → Penn000 → SpA-GAN_for_cloud_removal

Penn000 / SpA-GAN_for_cloud_removal

Licence: MIT License
Cloud Removal for High-resolution Remote Sensing Imagery based on Generative Adversarial Networks.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to SpA-GAN for cloud removal

PSTCR
Q. Zhang, Q. Yuan, J. Li, Z. Li, H. Shen, and L. Zhang, "Thick Cloud and Cloud Shadow Removal in Multitemporal Images using Progressively Spatio-Temporal Patch Group Learning", ISPRS Journal, 2020.
Stars: ✭ 43 (-46.25%)
Mutual labels:  cloud-removal

SpA GAN for Cloud Removal

GitHub repo size GitHub top language GitHub issues GitHub closed issues
GitHub watchers GitHub stars GitHub forks

new

1. INTRODUCTION

This is the source code of Cloud Removal for Remote Sensing Imagery via Spatial Attention Generative Adversarial Network. In this work, I proposes a novel cloud removal model called spatial attention generative adversarial networks or SpA GAN, which use spatial attention networks (SPANet) as generator. The architecture of SpA GAN is shown as fellow:

  • Generator

SpA GAN uses spatial attention networks an generator. See ./models/gen/SPANet.py for more details.

  • Discriminator

Discriminator is a fully CNN that C is convolution layer, B is batch normalization and R is Leaky ReLU. See ./models/dis/dis.py for more details.

  • Loss

The total loss of SpA GAN is formulated as fellow:

the first part is the loss of GAN

the second part is standard $L_1$ loss where $\lambda_c$ is a hyper parameter to control the weight of each channel to the loss.

the third part is attention loss where $A$ is the attention map and $M$ is the mask of cloud that computed from $M=|I_{in}-I_{gt}|_1$.

2. DATASET

2.1. RICE_DATASET

Click official address or Google Drive to download the open source RICE dataset. Build the file structure as the folder data shown. Here cloudy_image is the folder where the cloudy image is stored and the folder ground_truth stores the corresponding cloudless images.

./
+-- data
    +--	RICE_DATASET
        +-- RICE1
        |   +-- cloudy_image
        |   |   +-- 0.png
        |   |   +-- ...
        |   +-- ground_truth
        |       +-- 0.png
        |       +-- ...
        +-- RICE2
            +-- cloudy_image
            |   +-- 0.png
            |   +-- ...
            +-- ground_truth
                +-- 0.png
                +-- ...

2.2. Perlin Dataset

Construct the dataset by adding Perlin noise as cloud into the image.

3. TRAIN

Modify the config.yml to set your parameters and run:

python train.py

4. TEST

python predict.py --config <path_to_config.yml_in_the_out_dir> --test_dir <path_to_a_directory_stored_test_data> --out_dir <path_to_an_output_directory> --pretrained <path_to_a_pretrained_model> --cuda

There're my pre-trained models on RICE1(./pretrained_models/RICE1/gen_model_epoch_200.pth) and RICE2(./pretrained_models/RICE2/gen_model_epoch_200.pth).

Some results are shown as bellow and the images from left to right are: cloudy image, attention map, SpA GAN's output, ground truth.

5. EXPERIMENTS

In this section, I compares SpA GAN with conditional GAN and cycle GAN using peak signal to noise ratio (PSNR) and structural similarity index (SSIM) as metrics on datasets RICE1 and RICE2.

5.1 RICE1

qualitative analysis

The result are shown as bellow and the images from left to right are: cloudy image, conditional GAN's output, cycle GAN's output , SpA GAN's output, ground truth.

quantitative analysis

PSNR SSIM
cGAN 26.547 0.903
cycle GAN 25.880 0.893
SpA GAN 30.232 0.954

5.1 RICE2

qualitative analysis

The result are shown as bellow and the images from left to right are: cloudy image, conditional GAN's output, cycle GAN's output , SpA GAN's output, ground truth.

quantitative analysis

PSNR SSIM
cGAN 25.384 0.811
cycle GAN 23.910 0.793
SpA GAN 28.368 0.906

6. CONTACT

Contact me if you have any questions about the code and its execution.

E-mail: [email protected]

If you think this work is helpful for your research, give me a star :-D

Citations

@article{Pan2020,
  title   = {Cloud Removal for Remote Sensing Imagery via Spatial Attention Generative Adversarial Network},
  author  = {Heng Pan},
  journal = {arXiv preprint arXiv:2009.13015},
  year    = {2020}
}
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].