Upscale video frames in real-time using GPU acceleration.
Install the StreamPack Nodes
Open the ComfyUI Graph Editor
Find the Super Resolution Nodes
SuperResolution
under the StreamPack/
category.Place it in the Workflow
SR Model Loader
and SR Upscale
. You need both to upscale, so place them on the canvas.Connect Inputs and Configure Parameters
SR Model Loader
, you’ll see widgets to select the upscaling model and scale factor.SR Model Loader
to the input of SR Upscale
.SR Upscale
node, toggle the use CUDA
widget to true
to enable CUDA acceleration.SR Upscale
and a preview node to the output.Minimal Super Resolution Node Implementation
Tips for Tuning and Best Practices
Model | Architecture | Features | Best For | Speed | Quality |
---|---|---|---|---|---|
FSRCNN-small | Lightweight CNN | Fast, minimal memory use | Real-time processing, mobile | ★★★★★ | ★★ |
FSRCNN | CNN with larger features | Good balance of speed/quality | General purpose | ★★★★ | ★★★ |
ESPCN | Sub-pixel convolutions | Efficient upscaling at end | Text/line drawings | ★★★★ | ★★★ |
VDSR | Very deep CNN | Better edge reconstruction | Detailed images with edges | ★★★ | ★★★★ |
LapSRN | Laplacian pyramid | Progressive upscaling | Sharp edges, details | ★★★ | ★★★★ |
EDSR | Deep residual network | Most parameters, best quality | Maximum detail | ★★ | ★★★★★ |
512x512
, the output will be
1024x1024
with a scale factor of 2
.true
to enable CUDA acceleration for upscaling.References