From 27b2856d81a46bc2dfe501a7a67aa5a11b6f65ca Mon Sep 17 00:00:00 2001 From: abhishekbaghel11 Date: Thu, 12 Oct 2023 17:47:50 +0530 Subject: [PATCH 1/2] Add summary --- summaries/cycle_dehaze.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 summaries/cycle_dehaze.md diff --git a/summaries/cycle_dehaze.md b/summaries/cycle_dehaze.md new file mode 100644 index 0000000..12c6599 --- /dev/null +++ b/summaries/cycle_dehaze.md @@ -0,0 +1,39 @@ +# Cycle-Dehaze: Enhanced CycleGAN for Single Image Dehazing + +Deniz Engin, Anıl Genc, Hazım Kemal Ekenel + +## Summary + +This paper proposes an end-to-end network for single-image dehazing problems, which is an enhanced version of the cycleGAN method, i.e, this also works on unpaired images in the datasets. The provided method is better than the state of the art methods for single-image dehazing which use the atmospheric scattering model. + +## Main contributions + +- The addition of perceptual cycle loss in the original cycleGAN architecture, which compares images in a feature space rather than the pixel space. + +![Losses](https://raw.githubusercontent.com/engindeniz/Cycle-Dehaze/master/figs/model.png) + +- Since the paper is adopting the original cycleGAN architecture, hence dataset of unpaired images is used. + +- This method does not rely on calculating the parameters of the atmospheric scattering model (which is used in the earlier methods). + +- To upscale the output images, Laplacian pyramid is used instead of the bicubic-upscaling method to get a higher resolution and sharp image for better haze free images. + +- Due to its cyclic structure, the model turns out to be generalized and can be used for other datasets. + +## Implementation details + +- The CycleGAN model architecture is adapted from the original [CycleGAN](https://arxiv.org/pdf/1703.10593.pdf) paper, with the addition of a cycle perceptual loss inspired by the [EnhanceNet paper](https://arxiv.org/pdf/1612.07919.pdf). To achieve high-resolution output images, the model utilizes the [Laplacian pyramid](https://arxiv.org/pdf/1506.05751.pdf) method. + +## Two-cents + +- The model achieves very significant results even in the absence of the ground-truth images, unlike the state of the art methods. + +- The is a generalizable model as it learns the dehazing task rather than overfitting on the data. + +- Higher weightage is given to cycle consistency loss as compared to perceptual cycle loss, as higher weightage to the perceptual cycle loss causes loss of color information after dehazing. + +## Resources + +- Paper:- https://arxiv.org/pdf/1805.05308.pdf + +- Implementation:- https://github.com/engindeniz/Cycle-Dehaze/ \ No newline at end of file From 33877c7f93bc10c5a79b6c28372fc25e2fff805c Mon Sep 17 00:00:00 2001 From: abhishekbaghel11 Date: Tue, 17 Oct 2023 22:13:02 +0530 Subject: [PATCH 2/2] Added the conference name and publication year --- summaries/cycle_dehaze.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/summaries/cycle_dehaze.md b/summaries/cycle_dehaze.md index 12c6599..be4b27c 100644 --- a/summaries/cycle_dehaze.md +++ b/summaries/cycle_dehaze.md @@ -1,6 +1,8 @@ # Cycle-Dehaze: Enhanced CycleGAN for Single Image Dehazing -Deniz Engin, Anıl Genc, Hazım Kemal Ekenel +- Authors:- Deniz Engin, Anıl Genc, Hazım Kemal Ekenel +- Conference name:- The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) +- Year of publication:- 2018 ## Summary @@ -36,4 +38,4 @@ This paper proposes an end-to-end network for single-image dehazing problems, wh - Paper:- https://arxiv.org/pdf/1805.05308.pdf -- Implementation:- https://github.com/engindeniz/Cycle-Dehaze/ \ No newline at end of file +- Implementation:- https://github.com/engindeniz/Cycle-Dehaze/