mirror of
https://github.com/artegoser/image-pluser-webui.git
synced 2024-11-06 04:33:57 +03:00
11 lines
277 B
Python
11 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]
|