We have used the PASCAL VOC2007 dataset for training De-noise, JPEG Deblocking, Super Resolution and combined model. We used the PASCAL VOC2007 for creating the synthetic datasets for each of the image restoration use-cases.
We have trained 6 different models for 100K iterations for the purpose of this project.
De-noise model - Generated images with noise level - 0.1 and trained the model for this dataset. Salt and pepper noise is applied on ground truth image to generate noisy images.
JPEG Deblocking - Generated images with compression factor - 10 and trained the model for this dataset.
Super-Resolution - Generated images with scaling factor - 1/3 and trained the model for this dataset. Dataset is generated by downscaling the ground truth image and then upscaling by 3x to generate train image. Nearest neighbor interpolation is used to scale the image. Goal of this model is to increase the clarity of the output image.
Combined Model - Performed data augmentation on images using noise level 0.1, compression quality 10, scaling factor 1/3 and trained the model on this synthetic dataset.
DeRain - We have used the DeRain dataset and extended the existing MemNet to support training of color images for DeRain task.
DeSnow - We have used the DeSnow dataset and extended the existing MemNet to support training of color images for DeSnow task.
For the purpose of Robustness Testing, we have performed the following tests:
(i) Generated images with different compression factor(10, 15, 20) and tested how well the JPEG Deblocking model & combined model performs.
(ii) Generated images with different noise level (0.1, 0.3, 0.5) and tested how well the Denoise model & combined model performs.
(iii) Generated images with random scaling factor (1/2, 1/3, 1/4) and tested how well the Super-Resolution model performs.
(iv) Tested images from the individual use-cases on the combined model.
Performance Evaluation Metrics used:
Average PSNR
Average SSIM
Training Loss
Plots for the above have been plotted and can be seen in the Performance Evaluation section.