Home

Awesome

[ECCV 2024] RealViformer

RealViformer: Investigating Attention for Real-World Video Super-Resolution

arXiv
Yuehan Zhang, Angela Yao
National University of Singapore

Key Insights

In this paper, we focus on investigating spatial and channel attention under real-world VSR settings:

TODOs

Installation

Set up environment

Python >= 3.9
PyTorch > 1.12

Install RealViformer

# Clone the repository
git clone https://github.com/Yuehan717/RealViformer.git

# Navigate into the repository
cd RealViformer

# Install dependencies
pip install -r requirements.txt

Datasets

Usage

As RealViformer focuses on architecture design, we only provide testing scripts. The pretrained model is available here.

python inference_realviformer.py --model_path pretrained_model/weights.pth --input_path [path to video folder] --save_path results/ --interval 100

Acknowledgement

The code is based on BasicVSR and Restormer. Thanks to their great work!