diff options
author | terminaldweller <thabogre@gmail.com> | 2022-11-23 10:29:47 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-11-23 10:29:47 +0000 |
commit | ce34198e8dd8ce259695cdb510bb11f10a62376b (patch) | |
tree | 918b36b6dadfb370677150c86bb0174843a4fa9d /main.py | |
parent | update (diff) | |
download | magni-ce34198e8dd8ce259695cdb510bb11f10a62376b.tar.gz magni-ce34198e8dd8ce259695cdb510bb11f10a62376b.zip |
WIP
Diffstat (limited to 'main.py')
-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.""" |