├── LICENSE ├── README.md ├── demo.py ├── dwt.py ├── figure ├── Y_net.png └── example.png ├── haze_img ├── 1403_0.85_0.08.jpg ├── 1420_0.85_0.08.jpg └── 1421_1_0.12.jpg ├── model └── model_last.pkl ├── pytorch_ssim └── __init__.py ├── vertical_net.py └── wavelet_ssim_loss.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/demo.py -------------------------------------------------------------------------------- /dwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/dwt.py -------------------------------------------------------------------------------- /figure/Y_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/figure/Y_net.png -------------------------------------------------------------------------------- /figure/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/figure/example.png -------------------------------------------------------------------------------- /haze_img/1403_0.85_0.08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/haze_img/1403_0.85_0.08.jpg -------------------------------------------------------------------------------- /haze_img/1420_0.85_0.08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/haze_img/1420_0.85_0.08.jpg -------------------------------------------------------------------------------- /haze_img/1421_1_0.12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/haze_img/1421_1_0.12.jpg -------------------------------------------------------------------------------- /model/model_last.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/model/model_last.pkl -------------------------------------------------------------------------------- /pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /vertical_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/vertical_net.py -------------------------------------------------------------------------------- /wavelet_ssim_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/Y-net/HEAD/wavelet_ssim_loss.py --------------------------------------------------------------------------------