An open API service indexing awesome lists of open source software.

https://github.com/gotneb/real-esrgan-api

API using xinntao's NCNN implementation of Real-ESRGAN.
https://github.com/gotneb/real-esrgan-api

Last synced: 4 months ago
JSON representation

API using xinntao's NCNN implementation of Real-ESRGAN.

Awesome Lists containing this project

README

        



Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.
We extend the powerful ESRGAN to a practical restoration application (namely, Real-ESRGAN), which is trained with pure synthetic data.

---

### šŸ“– Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data

> [[Paper](https://arxiv.org/abs/2107.10833)] ā€ƒ [[YouTube Video](https://www.youtube.com/watch?v=fxHWoDSSvSc)] ā€ƒ [[B站讲解](https://www.bilibili.com/video/BV1H34y1m7sS/)] ā€ƒ [[Poster](https://xinntao.github.io/projects/RealESRGAN_src/RealESRGAN_poster.pdf)] ā€ƒ [[PPT slides](https://docs.google.com/presentation/d/1QtW6Iy8rm8rGLsJ0Ldti6kP-7Qyzy6XL/edit?usp=sharing&ouid=109799856763657548160&rtpof=true&sd=true)]

> [Xintao Wang](https://xinntao.github.io/), Liangbin Xie, [Chao Dong](https://scholar.google.com.hk/citations?user=OSDCB0UAAAAJ), [Ying Shan](https://scholar.google.com/citations?user=4oXBp9UAAAAJ&hl=en)

> [Tencent ARC Lab](https://arc.tencent.com/en/ai-demos/imgRestore); Shenzhen Institutes of Advanced Technology, Chinese Academy of Sciences



---

## ⚔ Installation
1. Clone repo

```bash
git clone https://github.com/xinntao/Real-ESRGAN.git
cd Real-ESRGAN
```

1. Install dependent packages
```bash
# Create an env
python -m venv .venv
source .venv/bin/activate

# Install packages
python -m pip install --upgrade pip
pip install -r requirements.txt
```

## šŸ¤— Acknowledgement
Thanks to [xinntao](https://github.com/xinntao) for providing this amazing tool for free.