├── .gitattributes ├── README.md ├── checkpoints └── README.md ├── data ├── __init__.py ├── aligned_dataset.py ├── base_data_loader.py ├── base_dataset.py ├── custom_dataset_data_loader.py ├── data_loader.py └── image_folder.py ├── datasets └── README.md ├── evaluation code ├── FLIF-master │ └── README.md ├── README.md ├── bpg-win64 │ └── README.md ├── main.m ├── msssim.m └── ssim_index_new.m ├── models ├── DSSLIC_model.py ├── __init__.py ├── base_model.py ├── jpeg-python │ ├── decoder.py │ ├── encoded.txt │ ├── encoder.py │ ├── huffman.py │ └── utils.py ├── models.py ├── networks.py ├── pytorch_msssim │ └── __init__.py └── pytorch_ssim │ └── __init__.py ├── options ├── __init__.py ├── base_options.py ├── test_options.py └── train_options.py ├── results └── README.md ├── test.py ├── train.py └── util ├── __init__.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/checkpoints/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | import torch -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/datasets/README.md -------------------------------------------------------------------------------- /evaluation code/FLIF-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/evaluation code/FLIF-master/README.md -------------------------------------------------------------------------------- /evaluation code/README.md: -------------------------------------------------------------------------------- 1 | Evaluation Matlab Code -------------------------------------------------------------------------------- /evaluation code/bpg-win64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/evaluation code/bpg-win64/README.md -------------------------------------------------------------------------------- /evaluation code/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/evaluation code/main.m -------------------------------------------------------------------------------- /evaluation code/msssim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/evaluation code/msssim.m -------------------------------------------------------------------------------- /evaluation code/ssim_index_new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/evaluation code/ssim_index_new.m -------------------------------------------------------------------------------- /models/DSSLIC_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/DSSLIC_model.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | import torch -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/jpeg-python/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/jpeg-python/decoder.py -------------------------------------------------------------------------------- /models/jpeg-python/encoded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/jpeg-python/encoded.txt -------------------------------------------------------------------------------- /models/jpeg-python/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/jpeg-python/encoder.py -------------------------------------------------------------------------------- /models/jpeg-python/huffman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/jpeg-python/huffman.py -------------------------------------------------------------------------------- /models/jpeg-python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/jpeg-python/utils.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/models.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/pytorch_msssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/pytorch_msssim/__init__.py -------------------------------------------------------------------------------- /models/pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/models/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- 1 | import torch -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/options/train_options.py -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- 1 | Coming soon... 2 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | import torch -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makbari7/DSSLIC/HEAD/util/visualizer.py --------------------------------------------------------------------------------