Created
August 23, 2022 21:39
-
-
Save amb/2ac6f03321489c540ecae5915b189a3f to your computer and use it in GitHub Desktop.
ESRGAN auto upscale
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo %* | |
@echo off | |
magick %* input.jpg | |
F:\apps\esrgan\realesrgan-ncnn-vulkan.exe -i input.jpg -o esr_output.jpg -n realesrgan-x4plus | |
magick esr_output.jpg -scale 50%% esr\\%~n1.jpg | |
del input.jpg | |
del esr_output.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment