diff options
author | rewbs <robin@soal.org> | 2022-09-08 02:53:13 +0000 |
---|---|---|
committer | rewbs <robin@soal.org> | 2022-09-08 02:53:13 +0000 |
commit | 1e7a36fd79612d924f0aca18061f1b3bd947b02a (patch) | |
tree | 2a84414df0ee5fb0b67a159516cd804e3949f56c | |
parent | 52e071da2a04acfd19cf8f6e69e006bd59937447 (diff) | |
download | stable-diffusion-webui-gfx803-1e7a36fd79612d924f0aca18061f1b3bd947b02a.tar.gz stable-diffusion-webui-gfx803-1e7a36fd79612d924f0aca18061f1b3bd947b02a.tar.bz2 stable-diffusion-webui-gfx803-1e7a36fd79612d924f0aca18061f1b3bd947b02a.zip |
Remove debug print.
-rw-r--r-- | modules/img2img.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 2c74842d..52971785 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -86,7 +86,6 @@ def img2img(prompt: str, init_img, init_img_with_mask, steps: int, sampler_index init_img = processed.images[0]
if do_color_correction and correction_target is not None:
- print("Colour correcting input...")
init_img = Image.fromarray(cv2.cvtColor(exposure.match_histograms(
cv2.cvtColor(
np.asarray(init_img),
|