Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/holywu/vs-mfdin
MFDIN function for VapourSynth
https://github.com/holywu/vs-mfdin
mfdin pytorch tensorrt vapoursynth
Last synced: 25 days ago
JSON representation
MFDIN function for VapourSynth
- Host: GitHub
- URL: https://github.com/holywu/vs-mfdin
- Owner: HolyWu
- License: mit
- Created: 2024-12-07T15:16:35.000Z (26 days ago)
- Default Branch: master
- Last Pushed: 2024-12-07T15:31:17.000Z (26 days ago)
- Last Synced: 2024-12-07T16:24:47.485Z (26 days ago)
- Topics: mfdin, pytorch, tensorrt, vapoursynth
- Language: Python
- Homepage:
- Size: 6.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MFDIN
Multiframe Joint Enhancement for Early Interlaced Videos, based on https://github.com/anymyb/MFDIN.## Dependencies
- [PyTorch](https://pytorch.org/get-started/) 2.5.1 or later
- [VapourSynth](http://www.vapoursynth.com/) R66 or later`trt` requires additional packages:
- [TensorRT](https://developer.nvidia.com/tensorrt) 10.3.0 or later
- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.5.0 or laterTo install the latest nightly build of PyTorch and Torch-TensorRT, run:
```
pip install -U packaging setuptools wheel
pip install --pre -U torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu124
pip install --no-deps --pre -U torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124
pip install -U tensorrt-cu12 tensorrt-cu12_bindings tensorrt-cu12_libs --extra-index-url https://pypi.nvidia.com
```## Installation
```
pip install -U vsmfdin
```## Usage
```python
from vsmfdin import mfdinret = mfdin(clip)
```See `__init__.py` for the description of the parameters.