feat: histogram matching

This commit is contained in:
Artemy 2023-04-30 21:01:03 +03:00
parent 995481f437
commit f6e3225afd
5 changed files with 47 additions and 4 deletions

View file

@ -1,6 +1,4 @@
from methods.stack_methods import (
methods_funcs,
)
from methods.stack_methods import methods_funcs
import os
from processing.utils import generate_name

10
processing/two_to_one.py Normal file
View file

@ -0,0 +1,10 @@
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]