diff options
Diffstat (limited to '')
-rwxr-xr-x | main.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/env python -"""Superscaler.""" +"""Superscaler benchmarks. sorta.""" # https://learnopencv.com/super-resolution-in-opencv/ # https://github.com/xinntao/ESRGAN # https://github.com/xinntao/Real-ESRGAN @@ -11,9 +11,10 @@ # https://github.com/Saafke/FSRCNN_Tensorflow/tree/master/models # https://github.com/fannymonori/TF-LapSRN/tree/master/export -import cv2 import time +import cv2 + def edsr_superscaler(img): """EDSR superscaler.""" |