├── .DS_Store ├── FDL_pytorch ├── FDL.py ├── __init__.py └── models.py ├── README.md ├── imgs ├── .DS_Store ├── DPED_performance.png ├── ST_performance.png ├── comparison.png ├── framework.png └── realSR_performance.png ├── requirements.txt └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/.DS_Store -------------------------------------------------------------------------------- /FDL_pytorch/FDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/FDL_pytorch/FDL.py -------------------------------------------------------------------------------- /FDL_pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | from .FDL import FDL_loss -------------------------------------------------------------------------------- /FDL_pytorch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/FDL_pytorch/models.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/README.md -------------------------------------------------------------------------------- /imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/.DS_Store -------------------------------------------------------------------------------- /imgs/DPED_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/DPED_performance.png -------------------------------------------------------------------------------- /imgs/ST_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/ST_performance.png -------------------------------------------------------------------------------- /imgs/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/comparison.png -------------------------------------------------------------------------------- /imgs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/framework.png -------------------------------------------------------------------------------- /imgs/realSR_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/imgs/realSR_performance.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch>=1.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eezkni/FDL/HEAD/setup.py --------------------------------------------------------------------------------