├── .clang-format ├── .clang_complete ├── .github └── workflows │ └── cmake-single-platform.yml ├── .gitignore ├── .syntastic_cpp_config ├── .travis.yml ├── CMakeLists.txt ├── FindFreeImage.cmake ├── LICENSE ├── Makefile ├── README.rst ├── compare_args.cpp ├── compare_args.h ├── coverage.bash ├── coveralls.bash ├── coverity.bash ├── exceptions.h ├── lpyramid.cpp ├── lpyramid.h ├── memcheck.bash ├── memcheck.supp ├── metric.cpp ├── metric.h ├── perceptualdiff.cpp ├── rgba_image.cpp ├── rgba_image.h └── test ├── Aqsis_vase.png ├── Aqsis_vase_ref.png ├── Bug1102605.tif ├── Bug1102605_ref.tif ├── Bug1471457.tif ├── Bug1471457_ref.tif ├── alpha1.png ├── alpha2.png ├── cam_mb.tif ├── cam_mb_ref.tif ├── fish1.png ├── fish2.png ├── run_tests.bash ├── square.png └── square_scaled.png /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang_complete: -------------------------------------------------------------------------------- 1 | .syntastic_cpp_config -------------------------------------------------------------------------------- /.github/workflows/cmake-single-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/.github/workflows/cmake-single-platform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.syntastic_cpp_config: -------------------------------------------------------------------------------- 1 | -std=c++11 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/FindFreeImage.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/README.rst -------------------------------------------------------------------------------- /compare_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/compare_args.cpp -------------------------------------------------------------------------------- /compare_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/compare_args.h -------------------------------------------------------------------------------- /coverage.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/coverage.bash -------------------------------------------------------------------------------- /coveralls.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/coveralls.bash -------------------------------------------------------------------------------- /coverity.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/coverity.bash -------------------------------------------------------------------------------- /exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/exceptions.h -------------------------------------------------------------------------------- /lpyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/lpyramid.cpp -------------------------------------------------------------------------------- /lpyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/lpyramid.h -------------------------------------------------------------------------------- /memcheck.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/memcheck.bash -------------------------------------------------------------------------------- /memcheck.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/memcheck.supp -------------------------------------------------------------------------------- /metric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/metric.cpp -------------------------------------------------------------------------------- /metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/metric.h -------------------------------------------------------------------------------- /perceptualdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/perceptualdiff.cpp -------------------------------------------------------------------------------- /rgba_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/rgba_image.cpp -------------------------------------------------------------------------------- /rgba_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/rgba_image.h -------------------------------------------------------------------------------- /test/Aqsis_vase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Aqsis_vase.png -------------------------------------------------------------------------------- /test/Aqsis_vase_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Aqsis_vase_ref.png -------------------------------------------------------------------------------- /test/Bug1102605.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Bug1102605.tif -------------------------------------------------------------------------------- /test/Bug1102605_ref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Bug1102605_ref.tif -------------------------------------------------------------------------------- /test/Bug1471457.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Bug1471457.tif -------------------------------------------------------------------------------- /test/Bug1471457_ref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/Bug1471457_ref.tif -------------------------------------------------------------------------------- /test/alpha1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/alpha1.png -------------------------------------------------------------------------------- /test/alpha2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/alpha2.png -------------------------------------------------------------------------------- /test/cam_mb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/cam_mb.tif -------------------------------------------------------------------------------- /test/cam_mb_ref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/cam_mb_ref.tif -------------------------------------------------------------------------------- /test/fish1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/fish1.png -------------------------------------------------------------------------------- /test/fish2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/fish2.png -------------------------------------------------------------------------------- /test/run_tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/run_tests.bash -------------------------------------------------------------------------------- /test/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/square.png -------------------------------------------------------------------------------- /test/square_scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/perceptualdiff/HEAD/test/square_scaled.png --------------------------------------------------------------------------------