Last active
May 26, 2019 05:37
-
-
Save lextra2/6276bfce1bad21caf964175f8bae4f09 to your computer and use it in GitHub Desktop.
WAIFU2X.BAT - For https://github.com/nihui/waifu2x-ncnn-vulkan - Makes waifu2x process all .png in this .bat location, and moves them to the newely created UPSCALED folder. Requires all files to be in the same location.
This file contains hidden or 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
mkdir UPSCALED | |
for %%a in (*.png) do ( | |
waifu2x "%%a" "UPSCALED\%%~na.png" 1 2 400 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment