image-pluser-webui/processing/two_to_one.py
2023-04-30 21:01:03 +03:00

10 lines
277 B
Python

from methods.two_to_one_methods import methods_funcs
from processing.utils import generate_name
def two_to_one(img1, img2, method):
img = methods_funcs[method](img1, img2)
out_path = generate_name(subfolder="two_to_one")
img.save(out_path)
return [out_path]