Metadata-Version: 2.3
Name: vsrealesrgan
Version: 5.1.0
Summary: Real-ESRGAN function for VapourSynth
Project-URL: Homepage, https://github.com/HolyWu/vs-realesrgan
Project-URL: Issues, https://github.com/HolyWu/vs-realesrgan/issues
Author-email: HolyWu <holywu@gmail.com>
License-File: LICENSE
Keywords: PyTorch,Real-ESRGAN,TensorRT,VapourSynth
Classifier: Environment :: GPU :: NVIDIA CUDA
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.10
Requires-Dist: numpy
Requires-Dist: requests
Requires-Dist: torch>=2.6.0.dev
Requires-Dist: tqdm
Requires-Dist: vapoursynth>=66
Description-Content-Type: text/markdown

# Real-ESRGAN
Training Real-World Blind Super-Resolution with Pure Synthetic Data, based on https://github.com/xinntao/Real-ESRGAN.


## Dependencies
- [PyTorch](https://pytorch.org/get-started/) 2.6.0.dev
- [VapourSynth](http://www.vapoursynth.com/) R66 or later

`trt` requires additional packages:
- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.6.0.dev

To install the latest nightly build of PyTorch and Torch-TensorRT, run:
```
pip install -U packaging setuptools wheel
pip install --pre -U torch torchvision torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124 --extra-index-url https://pypi.nvidia.com
```


## Installation
```
pip install -U vsrealesrgan
python -m vsrealesrgan
```


## Usage
```python
from vsrealesrgan import realesrgan

ret = realesrgan(clip)
```

See `__init__.py` for the description of the parameters.
