mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
added model_dir option
This commit is contained in:
parent
72d64a469b
commit
f51ce05066
33
bin/waifu2x_converter.py
Executable file → Normal file
33
bin/waifu2x_converter.py
Executable file → Normal file
@ -4,10 +4,10 @@
|
|||||||
Name: Waifu2x Converter CPP Driver
|
Name: Waifu2x Converter CPP Driver
|
||||||
Author: K4YT3X
|
Author: K4YT3X
|
||||||
Date Created: February 8, 2019
|
Date Created: February 8, 2019
|
||||||
Last Modified: March 9, 2019
|
Last Modified: March 19, 2019
|
||||||
|
|
||||||
Description: This class controls waifu2x
|
Description: This class is a high-level wrapper
|
||||||
engine
|
for waifu2x-converter-cpp.
|
||||||
"""
|
"""
|
||||||
from avalon_framework import Avalon
|
from avalon_framework import Avalon
|
||||||
import subprocess
|
import subprocess
|
||||||
@ -23,8 +23,9 @@ class Waifu2xConverter:
|
|||||||
the upscale function.
|
the upscale function.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, waifu2x_settings):
|
def __init__(self, waifu2x_settings, model_dir):
|
||||||
self.waifu2x_settings = waifu2x_settings
|
self.waifu2x_settings = waifu2x_settings
|
||||||
|
self.waifu2x_settings['model_dir'] = model_dir
|
||||||
self.print_lock = threading.Lock()
|
self.print_lock = threading.Lock()
|
||||||
|
|
||||||
def upscale(self, input_folder, output_folder, scale_ratio, jobs):
|
def upscale(self, input_folder, output_folder, scale_ratio, jobs):
|
||||||
@ -42,7 +43,7 @@ class Waifu2xConverter:
|
|||||||
self.waifu2x_settings['input'] = input_folder
|
self.waifu2x_settings['input'] = input_folder
|
||||||
self.waifu2x_settings['output'] = output_folder
|
self.waifu2x_settings['output'] = output_folder
|
||||||
|
|
||||||
# Temporary fix for https://github.com/DeadSix27/waifu2x-converter-cpp/issues/109
|
# temporary fix for https://github.com/DeadSix27/waifu2x-converter-cpp/issues/109
|
||||||
self.waifu2x_settings['i'] = input_folder
|
self.waifu2x_settings['i'] = input_folder
|
||||||
self.waifu2x_settings['o'] = output_folder
|
self.waifu2x_settings['o'] = output_folder
|
||||||
self.waifu2x_settings['input'] = None
|
self.waifu2x_settings['input'] = None
|
||||||
@ -51,26 +52,28 @@ class Waifu2xConverter:
|
|||||||
self.waifu2x_settings['scale_ratio'] = scale_ratio
|
self.waifu2x_settings['scale_ratio'] = scale_ratio
|
||||||
self.waifu2x_settings['jobs'] = jobs
|
self.waifu2x_settings['jobs'] = jobs
|
||||||
|
|
||||||
# models_rgb must be specified manually
|
# models_rgb must be specified manually for waifu2x-converter-cpp
|
||||||
self.waifu2x_settings['model_dir'] = '{}\\models_rgb'.format(self.waifu2x_settings['waifu2x_converter_path'])
|
# if it's not specified in the arguments, create automatically
|
||||||
|
if self.waifu2x_settings['model_dir'] is None:
|
||||||
|
self.waifu2x_settings['model_dir'] = '{}\\models_rgb'.format(self.waifu2x_settings['waifu2x_converter_path'])
|
||||||
|
|
||||||
# Print thread start message
|
# print thread start message
|
||||||
self.print_lock.acquire()
|
self.print_lock.acquire()
|
||||||
Avalon.debug_info('[upscaler] Thread {} started'.format(threading.current_thread().name))
|
Avalon.debug_info('[upscaler] Thread {} started'.format(threading.current_thread().name))
|
||||||
self.print_lock.release()
|
self.print_lock.release()
|
||||||
|
|
||||||
# Create list for execution
|
# list to be executed
|
||||||
execute = []
|
execute = []
|
||||||
|
|
||||||
for key in self.waifu2x_settings.keys():
|
for key in self.waifu2x_settings.keys():
|
||||||
|
|
||||||
value = self.waifu2x_settings[key]
|
value = self.waifu2x_settings[key]
|
||||||
|
|
||||||
# The key doesn't need to be passed in this case
|
# the key doesn't need to be passed in this case
|
||||||
if key == 'waifu2x_converter_path':
|
if key == 'waifu2x_converter_path':
|
||||||
execute.append('{}\\waifu2x-converter-cpp.exe'.format(str(value)))
|
execute.append('{}\\waifu2x-converter-cpp.exe'.format(str(value)))
|
||||||
|
|
||||||
# Null or None means that leave this option out (keep default)
|
# null or None means that leave this option out (keep default)
|
||||||
elif value is None or value is False:
|
elif value is None or value is False:
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
@ -79,16 +82,12 @@ class Waifu2xConverter:
|
|||||||
else:
|
else:
|
||||||
execute.append('--{}'.format(key))
|
execute.append('--{}'.format(key))
|
||||||
|
|
||||||
# True means key is an option
|
# true means key is an option
|
||||||
if value is True:
|
if value is True:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
execute.append(str(value))
|
execute.append(str(value))
|
||||||
|
|
||||||
Avalon.debug_info('Executing: {}'.format(execute))
|
Avalon.debug_info('Executing: {}'.format(execute))
|
||||||
subprocess.run(execute, check=True)
|
return subprocess.run(execute, check=True).returncode
|
||||||
|
|
||||||
# Print thread exiting message
|
|
||||||
self.print_lock.acquire()
|
|
||||||
Avalon.debug_info('[upscaler] Thread {} exiting'.format(threading.current_thread().name))
|
|
||||||
self.print_lock.release()
|
|
||||||
|
Loading…
Reference in New Issue
Block a user