├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── model ├── esrgan │ ├── group1-shard1of5.bin │ ├── group1-shard2of5.bin │ ├── group1-shard3of5.bin │ ├── group1-shard4of5.bin │ ├── group1-shard5of5.bin │ └── model.json └── srgan │ ├── group1-shard1of2.bin │ ├── group1-shard2of2.bin │ └── model.json ├── package.json ├── rollup.config.js ├── src ├── imageEnhancer.ts ├── inference.ts └── main.ts ├── tsconfig.json └── web ├── index.html └── style.css /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | web/app.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/README.md -------------------------------------------------------------------------------- /model/esrgan/group1-shard1of5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/group1-shard1of5.bin -------------------------------------------------------------------------------- /model/esrgan/group1-shard2of5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/group1-shard2of5.bin -------------------------------------------------------------------------------- /model/esrgan/group1-shard3of5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/group1-shard3of5.bin -------------------------------------------------------------------------------- /model/esrgan/group1-shard4of5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/group1-shard4of5.bin -------------------------------------------------------------------------------- /model/esrgan/group1-shard5of5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/group1-shard5of5.bin -------------------------------------------------------------------------------- /model/esrgan/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/esrgan/model.json -------------------------------------------------------------------------------- /model/srgan/group1-shard1of2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/srgan/group1-shard1of2.bin -------------------------------------------------------------------------------- /model/srgan/group1-shard2of2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/srgan/group1-shard2of2.bin -------------------------------------------------------------------------------- /model/srgan/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/model/srgan/model.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/imageEnhancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/src/imageEnhancer.ts -------------------------------------------------------------------------------- /src/inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/src/inference.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/web/index.html -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amannm/super-resolution/HEAD/web/style.css --------------------------------------------------------------------------------