├── .github └── workflows │ └── python-package.yml ├── .pylintrc ├── AUTHORS.md ├── CHANGES.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── SSIM_CW-SSIM_comparison.ipynb ├── readings └── wang05b.pdf ├── requirements.txt ├── setup.cfg ├── setup.py ├── ssim ├── __init__.py ├── __main__.py ├── compat.py ├── ssimlib.py └── utils.py └── test-images ├── test1-1.png ├── test1-2.png ├── test2-1.png ├── test2-2.png ├── test3-cro.jpg ├── test3-lig.jpg ├── test3-orig.jpg └── test3-rot.jpg /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/README.md -------------------------------------------------------------------------------- /SSIM_CW-SSIM_comparison.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/SSIM_CW-SSIM_comparison.ipynb -------------------------------------------------------------------------------- /readings/wang05b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/readings/wang05b.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow 2 | numpy 3 | scipy 4 | argparse 5 | PyWavelets 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = True 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/setup.py -------------------------------------------------------------------------------- /ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/ssim/__init__.py -------------------------------------------------------------------------------- /ssim/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/ssim/__main__.py -------------------------------------------------------------------------------- /ssim/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/ssim/compat.py -------------------------------------------------------------------------------- /ssim/ssimlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/ssim/ssimlib.py -------------------------------------------------------------------------------- /ssim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/ssim/utils.py -------------------------------------------------------------------------------- /test-images/test1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test1-1.png -------------------------------------------------------------------------------- /test-images/test1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test1-2.png -------------------------------------------------------------------------------- /test-images/test2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test2-1.png -------------------------------------------------------------------------------- /test-images/test2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test2-2.png -------------------------------------------------------------------------------- /test-images/test3-cro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test3-cro.jpg -------------------------------------------------------------------------------- /test-images/test3-lig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test3-lig.jpg -------------------------------------------------------------------------------- /test-images/test3-orig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test3-orig.jpg -------------------------------------------------------------------------------- /test-images/test3-rot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jterrace/pyssim/HEAD/test-images/test3-rot.jpg --------------------------------------------------------------------------------