Skip to content

Efficient Space-time Super Resolution using Flow and Mask Upsampling

License

Notifications You must be signed in to change notification settings

saikatdutta/FMU_STSR

Repository files navigation

Efficient Space-time Video Super Resolution using Low-Resolution Flow and Mask Upsampling

Saikat Dutta, Nisarg A. Shah, Anurag Mittal

Accepted at NTIRE workshop, co-located with CVPR 2021 ArXiv | Paper | Poster

Requirements

Create a conda environment with Pytorch-1.1, CuPy-6.0, OpenCV, SciPy.

conda create -n myenv
conda activate myenv
conda install pytorch==1.1.0 torchvision==0.3.0 cudatoolkit=10.0 -c pytorch
conda install -c anaconda cupy
conda install -c anaconda scipy
conda install -c conda-forge opencv
conda install -c anaconda scikit-image
conda install -c anaconda pandas
conda install -c anaconda tqdm

Dataset

We use REDS STSR dataset for training and validation. Get the dataset by registering here. Unzip the dataset under REDS/ directory.

---REDS/
  |---val/
    |---val_sharp_bicubic/
      |---X4/
    |---val_sharp/
    

Training

Start your training by loading PWCNet (checkpoints/pretrained/network-chairs-things.pytorch) and RSDN (checkpoints/pretrained/RSDN.pth).

Generate results on REDS STSR Validation dataset

python REDS_val.py

Citation

If this project helps in your research, please cite our paper:

@inproceedings{dutta2021efficient,
  title={Efficient space-time video super resolution using low-resolution flow and mask upsampling},
  author={Dutta, Saikat and Shah, Nisarg A and Mittal, Anurag},
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
  pages={314--323},
  year={2021}
}

Acknowledgement

The following repositories were used to develop this project :

[1] QVI

[2] RSDN

[3] PWCNet