├── .gitattributes ├── IQA_pytorch ├── CW_SSIM.py ├── DISTS.py ├── FSIM.py ├── GMSD.py ├── LPIPSvgg.py ├── MAD.py ├── MS_SSIM.py ├── NLPD.py ├── SSIM.py ├── SteerPyrComplex.py ├── SteerPyrSpace.py ├── SteerPyrUtils.py ├── VIF.py ├── VIFs.py ├── VSI.py ├── __init__.py ├── __pycache__ │ ├── CW_SSIM.cpython-37.pyc │ ├── DISTS.cpython-37.pyc │ ├── MAD.cpython-37.pyc │ ├── SteerPyrComplex.cpython-37.pyc │ ├── SteerPyrSpace.cpython-37.pyc │ ├── SteerPyrUtils.cpython-37.pyc │ ├── VIF.cpython-37.pyc │ └── utils.cpython-37.pyc ├── images │ ├── r0.png │ └── r1.png ├── utils.py └── weights │ ├── DISTS.pt │ └── LPIPSvgg.pt ├── LICENSE ├── MANIFEST.in ├── README.md ├── examples └── recover.py ├── images ├── diagram.svg ├── r0.png └── r1.png ├── requirements.txt └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/.gitattributes -------------------------------------------------------------------------------- /IQA_pytorch/CW_SSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/CW_SSIM.py -------------------------------------------------------------------------------- /IQA_pytorch/DISTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/DISTS.py -------------------------------------------------------------------------------- /IQA_pytorch/FSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/FSIM.py -------------------------------------------------------------------------------- /IQA_pytorch/GMSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/GMSD.py -------------------------------------------------------------------------------- /IQA_pytorch/LPIPSvgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/LPIPSvgg.py -------------------------------------------------------------------------------- /IQA_pytorch/MAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/MAD.py -------------------------------------------------------------------------------- /IQA_pytorch/MS_SSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/MS_SSIM.py -------------------------------------------------------------------------------- /IQA_pytorch/NLPD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/NLPD.py -------------------------------------------------------------------------------- /IQA_pytorch/SSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/SSIM.py -------------------------------------------------------------------------------- /IQA_pytorch/SteerPyrComplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/SteerPyrComplex.py -------------------------------------------------------------------------------- /IQA_pytorch/SteerPyrSpace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/SteerPyrSpace.py -------------------------------------------------------------------------------- /IQA_pytorch/SteerPyrUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/SteerPyrUtils.py -------------------------------------------------------------------------------- /IQA_pytorch/VIF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/VIF.py -------------------------------------------------------------------------------- /IQA_pytorch/VIFs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/VIFs.py -------------------------------------------------------------------------------- /IQA_pytorch/VSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/VSI.py -------------------------------------------------------------------------------- /IQA_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__init__.py -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/CW_SSIM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/CW_SSIM.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/DISTS.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/DISTS.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/MAD.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/MAD.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/SteerPyrComplex.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/SteerPyrComplex.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/SteerPyrSpace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/SteerPyrSpace.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/SteerPyrUtils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/SteerPyrUtils.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/VIF.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/VIF.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /IQA_pytorch/images/r0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/images/r0.png -------------------------------------------------------------------------------- /IQA_pytorch/images/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/images/r1.png -------------------------------------------------------------------------------- /IQA_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/utils.py -------------------------------------------------------------------------------- /IQA_pytorch/weights/DISTS.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/weights/DISTS.pt -------------------------------------------------------------------------------- /IQA_pytorch/weights/LPIPSvgg.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/IQA_pytorch/weights/LPIPSvgg.pt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/README.md -------------------------------------------------------------------------------- /examples/recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/examples/recover.py -------------------------------------------------------------------------------- /images/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/images/diagram.svg -------------------------------------------------------------------------------- /images/r0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/images/r0.png -------------------------------------------------------------------------------- /images/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/images/r1.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch>=1.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingkeyan93/IQA-optimization/HEAD/setup.py --------------------------------------------------------------------------------