Metadata-Version: 2.1
Name: vsffdnet
Version: 1.0.0
Summary: FFDNet function for VapourSynth
Home-page: https://github.com/HolyWu/vs-ffdnet
Author: HolyWu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# FFDNet
FFDNet: Toward a Fast and Flexible Solution for CNN based Image Denoising

Ported from https://github.com/cszn/FFDNet


## 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 vsffdnet`


## Usage
```python
from vsffdnet import FFDNet

ret = FFDNet(clip)
```

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


