Weighted Multi Kernel Prediction Network for Burst Image Super-Resolution (CVPRW 2021) [PDF]
By Wooyeong Cho, Sanghyeok Son, Dae-Shik Kim
This projects took participate in New Trends in Image Restoration and Enhancement workshop and challenges on image and video processing Ntire 2021 challenge in conjunction with CVPR 2021
- Video/multi-frame challenges(2 tracks): Burst Super-Resolution: Synthetic and Real
- Notice: Since our model is in patent, we will open our source code after patent stages. Thanks for your interest in our work.
- Python >= 3
- PyTorch 1.7.0 (CUDA version 10.1)
- Python packages:
pip install opencv-python Pillow scikit-image tensorboard
-
Synthetic data: Note that any image dataset except the test split of the Zurich RAW to RGB dataset can be used to generate synthetic bursts for training.
-
Real-World data: containing 639 real-world bursts from BurstSR
-
How to evalutate on test dataset with pretrained model by synthtic datasets (+ gamma correctioned images)
- check the test image path and output image path
- set the path of pretrained ckpt
- run the code with bash
sh ./scripts/test_WMKPN.sh
-
How to save the output image with pretrained model by synthtic datasets (for submission)
- check the test image path and output image path
- set the path of pretrained ckpt
- run the code with bash
sh ./scripts/save_syn_WMKPN.sh
We trained our model on synthetic datasets.
- check the train image path
- run the code with bash
sh ./scripts/run_WMKPN.sh ```
- Training procedure will be printed in footprint_{model_name}-bs_{batch_size}-{filters}-x{scale}.txt
- logs and checkpoint file will be saved on "logs/{args.post}/", "ckpts/{args.post}/" respectively.
Our model mainly consists of two part, WMKPN and SRNet. WMKPN is a one of the key contribution of this paper, utilizing the features from kernel branch and weight branch in this model. Weighted Multiple Kernels are usd to predict an accmulated kernel which can lead to better alignment module for burst images.
Please cite the following paper if you feel WMKPN is useful to your research
@inproceedings{cho2021weighted,
title={Weighted Multi-Kernel Prediction Network for Burst Image Super-Resolution},
author={Cho, Wooyeong and Son, Sanghyeok and Kim, Dae-Shik},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
pages={404--413},
year={2021}
}