Metadata-Version: 2.1
Name: vsbasicvsr
Version: 1.0.0
Summary: BasicVSR function for VapourSynth
Home-page: https://github.com/HolyWu/vs-basicvsr
Author: HolyWu
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: torch

# BasicVSR
BasicVSR: The Search for Essential Components in Video Super-Resolution and Beyond

Ported from https://github.com/xinntao/BasicSR


## Dependencies
- [NumPy](https://numpy.org/install)
- [PyTorch](https://pytorch.org/get-started), preferably with CUDA. Note that `torchvision` and `torchaudio` are not required and hence can be omitted from the command.
- [VapourSynth](http://www.vapoursynth.com/)


## Installation
```
pip install --upgrade vsbasicvsr
```


## Usage
```python
from vsbasicvsr import BasicVSR

ret = BasicVSR(clip)
```

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


