├── README.md ├── backup ├── dataset ├── dataloader.py ├── reds.py └── vimeo7.py ├── demo ├── sigma10.gif ├── sigma100.gif └── sigma50.gif ├── eval.sh ├── gen_img.py ├── gen_video.py ├── gif_combine.py ├── loss └── loss.py ├── main.py ├── model ├── CRFP.py ├── CRFP_runtime.py ├── CRFP_test.py └── LTE.py ├── option.py ├── overview.png ├── png2mp4.py ├── pretrained_models ├── EGVSR_iter420000.pth ├── fnet.pth └── spynet_20210409-c6c1bd09.pth ├── pytorch_ssim └── __init__.py ├── test.sh ├── test_img_coor.py ├── test_runtime.py ├── test_video.py ├── test_video_quality.sh ├── train.sh ├── trainer.py ├── untar_models.sh └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/README.md -------------------------------------------------------------------------------- /backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/backup -------------------------------------------------------------------------------- /dataset/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/dataset/dataloader.py -------------------------------------------------------------------------------- /dataset/reds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/dataset/reds.py -------------------------------------------------------------------------------- /dataset/vimeo7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/dataset/vimeo7.py -------------------------------------------------------------------------------- /demo/sigma10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/demo/sigma10.gif -------------------------------------------------------------------------------- /demo/sigma100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/demo/sigma100.gif -------------------------------------------------------------------------------- /demo/sigma50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/demo/sigma50.gif -------------------------------------------------------------------------------- /eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/eval.sh -------------------------------------------------------------------------------- /gen_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/gen_img.py -------------------------------------------------------------------------------- /gen_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/gen_video.py -------------------------------------------------------------------------------- /gif_combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/gif_combine.py -------------------------------------------------------------------------------- /loss/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/loss/loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/main.py -------------------------------------------------------------------------------- /model/CRFP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/model/CRFP.py -------------------------------------------------------------------------------- /model/CRFP_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/model/CRFP_runtime.py -------------------------------------------------------------------------------- /model/CRFP_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/model/CRFP_test.py -------------------------------------------------------------------------------- /model/LTE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/model/LTE.py -------------------------------------------------------------------------------- /option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/option.py -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/overview.png -------------------------------------------------------------------------------- /png2mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/png2mp4.py -------------------------------------------------------------------------------- /pretrained_models/EGVSR_iter420000.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/pretrained_models/EGVSR_iter420000.pth -------------------------------------------------------------------------------- /pretrained_models/fnet.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/pretrained_models/fnet.pth -------------------------------------------------------------------------------- /pretrained_models/spynet_20210409-c6c1bd09.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/pretrained_models/spynet_20210409-c6c1bd09.pth -------------------------------------------------------------------------------- /pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/test.sh -------------------------------------------------------------------------------- /test_img_coor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/test_img_coor.py -------------------------------------------------------------------------------- /test_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/test_runtime.py -------------------------------------------------------------------------------- /test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/test_video.py -------------------------------------------------------------------------------- /test_video_quality.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/test_video_quality.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/train.sh -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/trainer.py -------------------------------------------------------------------------------- /untar_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/untar_models.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugenelet/CRFP/HEAD/utils.py --------------------------------------------------------------------------------