https://github.com/ComplexRobot/ComfyUI-Simple-VFI
Nodes for simple frame interpolation without the use of AI. Uses standard image operations to blend frames together.
https://github.com/ComplexRobot/ComfyUI-Simple-VFI
Last synced: 9 months ago
JSON representation
Nodes for simple frame interpolation without the use of AI. Uses standard image operations to blend frames together.
- Host: GitHub
- URL: https://github.com/ComplexRobot/ComfyUI-Simple-VFI
- Owner: ComplexRobot
- License: mit
- Created: 2025-03-16T07:31:38.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-16T07:52:59.000Z (9 months ago)
- Last Synced: 2025-03-16T08:27:22.080Z (9 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
- awesome-comfyui - **ComfyUI-Simple-VFI**
- awesome-comfyui - **ComfyUI-Simple-VFI**
README
# ComfyUI Simple VFI
Nodes for basic frame interpolation without the use of AI.
## Table of Contents
* [Nodes](#nodes)
* [Simple Frame Interpolation (VFI)](#simple-frame-interpolation-vfi)
## Nodes
### Simple Frame Interpolation (VFI)
A node for doing very simple frame interpolation operations.
Uses basic operations (bicubic, lanczos, etc.) to blend the frames together.
Also can apply a gaussian blur or sharpen effect to blend frames.
Blur will apply a motion blur effect, while sharpen will reduce motion blur.
| Input | Description |
|----------------|--------------------------------------------------------------------------------------------------------|
| images | Image frames to interpolate. |
| scale_method | Method used to interpolate the frames. Lanczos and bislerp may be slow compared to other methods. |
| multiplier | Value to multiply the number of frames by. Not limited to whole numbers. |
| batch_size | Number of pixels to operate on at a time. Adjust for a speed/memory trade-off. |
| gaussian_blur | Enable gaussian blur/sharpen frame blending. |
| blur_radius | The spread of the blur/sharpen to neighboring frames. A larger radius uses more VRAM. |
| blur_sigma | Intensity of blur/sharpen. Positive values blur, negative values sharpen. |
| sharpen_alpha | When blur_sigma is negative, this increases the sharpen intensity. |