├── .gitignore ├── LICENSE ├── README.md ├── demo ├── 1.jpg ├── 2.jpg ├── 2.png └── 3.jpg ├── env.d.ts ├── index.html ├── package.json ├── public ├── favicon.ico └── gh.png ├── src ├── App.vue ├── assets │ ├── demo.jpg │ ├── example1.jpg │ ├── example2.jpg │ └── main.css ├── image.ts ├── imghelper.c ├── imghelper.js ├── imghelper.wasm ├── main.ts ├── upscale.ts ├── vue-shim.d.ts └── worker.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/README.md -------------------------------------------------------------------------------- /demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/demo/1.jpg -------------------------------------------------------------------------------- /demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/demo/2.jpg -------------------------------------------------------------------------------- /demo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/demo/2.png -------------------------------------------------------------------------------- /demo/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/demo/3.jpg -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/public/gh.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/assets/demo.jpg -------------------------------------------------------------------------------- /src/assets/example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/assets/example1.jpg -------------------------------------------------------------------------------- /src/assets/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/assets/example2.jpg -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/assets/main.css -------------------------------------------------------------------------------- /src/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/image.ts -------------------------------------------------------------------------------- /src/imghelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/imghelper.c -------------------------------------------------------------------------------- /src/imghelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/imghelper.js -------------------------------------------------------------------------------- /src/imghelper.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/imghelper.wasm -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/upscale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/upscale.ts -------------------------------------------------------------------------------- /src/vue-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/vue-shim.d.ts -------------------------------------------------------------------------------- /src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/src/worker.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xororz/web-realesrgan/HEAD/vite.config.ts --------------------------------------------------------------------------------