https://github.com/holywu/vs-basicvsrpp
BasicVSR++ function for VapourSynth
https://github.com/holywu/vs-basicvsrpp
basicvsrplusplus pytorch vapoursynth
Last synced: 3 months ago
JSON representation
BasicVSR++ function for VapourSynth
- Host: GitHub
- URL: https://github.com/holywu/vs-basicvsrpp
- Owner: HolyWu
- License: apache-2.0
- Created: 2021-09-04T15:02:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-19T13:31:33.000Z (5 months ago)
- Last Synced: 2025-03-30T21:08:01.027Z (3 months ago)
- Topics: basicvsrplusplus, pytorch, vapoursynth
- Language: Python
- Homepage:
- Size: 90.8 KB
- Stars: 62
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BasicVSR++
Improving Video Super-Resolution with Enhanced Propagation and Alignment, based on https://github.com/ckkelvinchan/BasicVSR_PlusPlus.## Dependencies
- [PyTorch](https://pytorch.org/get-started/) 2.5.1 or later
- [VapourSynth](http://www.vapoursynth.com/) R66 or later## Installation
```
pip install -U vsbasicvsrpp
```If you want to download all models at once, run `python -m vsbasicvsrpp`. If you prefer to only download the model you
specified at first run, set `auto_download=True` in `basicvsrpp()`.## Usage
```python
from vsbasicvsrpp import basicvsrppret = basicvsrpp(clip)
```See `__init__.py` for the description of the parameters.