aboutsummaryrefslogtreecommitdiff
path: root/modules/processing.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-13 12:51:57 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-09-13 12:51:57 +0300
commitc84e333622883be7f1c2efa08259d36d27cadec7 (patch)
treed80d3405323feaca727a82f33ddee7f3fbe06ee4 /modules/processing.py
parent823cf946ec61896915850d2b1096637ee42b775d (diff)
color correction option for all img2img modes #363
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 65ae4846..c0b89244 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -8,6 +8,8 @@ import torch
import numpy as np
from PIL import Image, ImageFilter, ImageOps
import random
+import cv2
+from skimage import exposure
import modules.sd_hijack
from modules import devices
@@ -19,11 +21,30 @@ import modules.face_restoration
import modules.images as images
import modules.styles
+
# some of those options should not be changed at all because they would break the model, so I removed them from options.
opt_C = 4
opt_f = 8
+def setup_color_correction(image):
+ correction_target = cv2.cvtColor(np.asarray(image.copy()), cv2.COLOR_RGB2LAB)
+ return correction_target
+
+
+def apply_color_correction(correction, image):
+ image = Image.fromarray(cv2.cvtColor(exposure.match_histograms(
+ cv2.cvtColor(
+ np.asarray(image),
+ cv2.COLOR_RGB2LAB
+ ),
+ correction,
+ channel_axis=2
+ ), cv2.COLOR_LAB2RGB).astype("uint8"))
+
+ return image
+
+
class StableDiffusionProcessing:
def __init__(self, sd_model=None, outpath_samples=None, outpath_grids=None, prompt="", prompt_style="None", seed=-1, subseed=-1, subseed_strength=0, seed_resize_from_h=-1, seed_resize_from_w=-1, sampler_index=0, batch_size=1, n_iter=1, steps=50, cfg_scale=7.0, width=512, height=512, restore_faces=False, tiling=False, do_not_save_samples=False, do_not_save_grid=False, extra_generation_params=None, overlay_images=None, negative_prompt=None):
self.sd_model = sd_model
@@ -52,6 +73,7 @@ class StableDiffusionProcessing:
self.extra_generation_params: dict = extra_generation_params
self.overlay_images = overlay_images
self.paste_to = None
+ self.color_corrections = None
def init(self, seed):
pass
@@ -265,6 +287,8 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
image = Image.fromarray(x_sample)
+ if p.color_corrections is not None and i < len(p.color_corrections):
+ image = apply_color_correction(p.color_corrections[i], image)
if p.overlay_images is not None and i < len(p.overlay_images):
overlay = p.overlay_images[i]
@@ -420,6 +444,7 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
latent_mask = self.latent_mask if self.latent_mask is not None else self.image_mask
+ self.color_corrections = []
imgs = []
for img in self.init_images:
image = img.convert("RGB")
@@ -441,6 +466,9 @@ class StableDiffusionProcessingImg2Img(StableDiffusionProcessing):
if self.inpainting_fill != 1:
image = fill(image, latent_mask)
+ if opts.img2img_color_correction:
+ self.color_corrections.append(setup_color_correction(image))
+
image = np.array(image).astype(np.float32) / 255.0
image = np.moveaxis(image, 2, 0)