├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── image-ssim.js ├── image-ssim.min.js └── image-ssim.min.js.map ├── gulp_tasks ├── browserify.js ├── gh-pages.js ├── tslint.js ├── typedoc.js └── typescript.js ├── gulpfile.js ├── image-ssim.d.ts ├── index.d.ts ├── index.js ├── index.ts ├── package.json ├── test ├── browser_test.html ├── images │ ├── README.md │ ├── flower-blur.jpg │ ├── flower-contrast.jpg │ ├── flower-desaturated.jpg │ ├── flower-jpg.jpg │ ├── flower-noise.jpg │ ├── flower.jpg │ ├── palette-a.png │ ├── palette-b.png │ ├── wheel-pixelized.png │ └── wheel.png ├── lib │ └── load_images.js └── server_test.js └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | deploy/ 3 | temp/ 4 | 5 | .idea 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/README.md -------------------------------------------------------------------------------- /dist/image-ssim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/dist/image-ssim.js -------------------------------------------------------------------------------- /dist/image-ssim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/dist/image-ssim.min.js -------------------------------------------------------------------------------- /dist/image-ssim.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/dist/image-ssim.min.js.map -------------------------------------------------------------------------------- /gulp_tasks/browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulp_tasks/browserify.js -------------------------------------------------------------------------------- /gulp_tasks/gh-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulp_tasks/gh-pages.js -------------------------------------------------------------------------------- /gulp_tasks/tslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulp_tasks/tslint.js -------------------------------------------------------------------------------- /gulp_tasks/typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulp_tasks/typedoc.js -------------------------------------------------------------------------------- /gulp_tasks/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulp_tasks/typescript.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/gulpfile.js -------------------------------------------------------------------------------- /image-ssim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/image-ssim.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/index.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/package.json -------------------------------------------------------------------------------- /test/browser_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/browser_test.html -------------------------------------------------------------------------------- /test/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/README.md -------------------------------------------------------------------------------- /test/images/flower-blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower-blur.jpg -------------------------------------------------------------------------------- /test/images/flower-contrast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower-contrast.jpg -------------------------------------------------------------------------------- /test/images/flower-desaturated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower-desaturated.jpg -------------------------------------------------------------------------------- /test/images/flower-jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower-jpg.jpg -------------------------------------------------------------------------------- /test/images/flower-noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower-noise.jpg -------------------------------------------------------------------------------- /test/images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/flower.jpg -------------------------------------------------------------------------------- /test/images/palette-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/palette-a.png -------------------------------------------------------------------------------- /test/images/palette-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/palette-b.png -------------------------------------------------------------------------------- /test/images/wheel-pixelized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/wheel-pixelized.png -------------------------------------------------------------------------------- /test/images/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/images/wheel.png -------------------------------------------------------------------------------- /test/lib/load_images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/lib/load_images.js -------------------------------------------------------------------------------- /test/server_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/test/server_test.js -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darosh/image-ssim-js/HEAD/tslint.json --------------------------------------------------------------------------------