├── README.md ├── checkpoint └── bicubic_PP_100_29.579639434814453.pth ├── configs └── conf.yaml ├── inference.py ├── models ├── SR_models.py └── __pycache__ │ └── SR_models.cpython-37.pyc ├── onnx_inference.py ├── out.onnx ├── out_images ├── 0002x3.png ├── 0003x3.png ├── 0004x3.png ├── 0004x3(复件).png ├── 0882.png ├── bicubic_0002x3.png ├── bicubic_0003x3.png ├── bicubic_0004x3.png └── bicubic_0882.png ├── test_img └── 0004x3.png ├── torch2onnx.py ├── train.py ├── training ├── __pycache__ │ ├── dataset.cpython-37.pyc │ ├── dataset1.cpython-37.pyc │ ├── loggers.cpython-37.pyc │ ├── schedulers.cpython-37.pyc │ └── trainer.cpython-37.pyc ├── dataset.py ├── loggers.py └── trainer.py └── utils ├── __pycache__ ├── conf_utils.cpython-37.pyc ├── deg.cpython-37.pyc ├── deg1.cpython-37.pyc ├── img_utils.cpython-37.pyc ├── img_utils1.cpython-37.pyc ├── imresize.cpython-37.pyc └── ssim.cpython-37.pyc ├── conf_utils.py ├── deg.py ├── img_utils.py ├── imresize.py └── ssim.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint/bicubic_PP_100_29.579639434814453.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/checkpoint/bicubic_PP_100_29.579639434814453.pth -------------------------------------------------------------------------------- /configs/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/configs/conf.yaml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/inference.py -------------------------------------------------------------------------------- /models/SR_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/models/SR_models.py -------------------------------------------------------------------------------- /models/__pycache__/SR_models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/models/__pycache__/SR_models.cpython-37.pyc -------------------------------------------------------------------------------- /onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/onnx_inference.py -------------------------------------------------------------------------------- /out.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out.onnx -------------------------------------------------------------------------------- /out_images/0002x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/0002x3.png -------------------------------------------------------------------------------- /out_images/0003x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/0003x3.png -------------------------------------------------------------------------------- /out_images/0004x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/0004x3.png -------------------------------------------------------------------------------- /out_images/0004x3(复件).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/0004x3(复件).png -------------------------------------------------------------------------------- /out_images/0882.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/0882.png -------------------------------------------------------------------------------- /out_images/bicubic_0002x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/bicubic_0002x3.png -------------------------------------------------------------------------------- /out_images/bicubic_0003x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/bicubic_0003x3.png -------------------------------------------------------------------------------- /out_images/bicubic_0004x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/bicubic_0004x3.png -------------------------------------------------------------------------------- /out_images/bicubic_0882.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/out_images/bicubic_0882.png -------------------------------------------------------------------------------- /test_img/0004x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/test_img/0004x3.png -------------------------------------------------------------------------------- /torch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/torch2onnx.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/train.py -------------------------------------------------------------------------------- /training/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /training/__pycache__/dataset1.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/__pycache__/dataset1.cpython-37.pyc -------------------------------------------------------------------------------- /training/__pycache__/loggers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/__pycache__/loggers.cpython-37.pyc -------------------------------------------------------------------------------- /training/__pycache__/schedulers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/__pycache__/schedulers.cpython-37.pyc -------------------------------------------------------------------------------- /training/__pycache__/trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/__pycache__/trainer.cpython-37.pyc -------------------------------------------------------------------------------- /training/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/dataset.py -------------------------------------------------------------------------------- /training/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/loggers.py -------------------------------------------------------------------------------- /training/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/training/trainer.py -------------------------------------------------------------------------------- /utils/__pycache__/conf_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/conf_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/deg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/deg.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/deg1.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/deg1.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/img_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/img_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/img_utils1.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/img_utils1.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/imresize.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/imresize.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/ssim.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/__pycache__/ssim.cpython-37.pyc -------------------------------------------------------------------------------- /utils/conf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/conf_utils.py -------------------------------------------------------------------------------- /utils/deg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/deg.py -------------------------------------------------------------------------------- /utils/img_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/img_utils.py -------------------------------------------------------------------------------- /utils/imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/imresize.py -------------------------------------------------------------------------------- /utils/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysnower/bicubic-plusplus/HEAD/utils/ssim.py --------------------------------------------------------------------------------