diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-02 15:01:11 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-02 15:01:11 +0000 |
commit | 11d23e8ca55c097ecfa255a05b63f194e25f08be (patch) | |
tree | fa9933ad1e9f0e3b33c89b23781032dc5a66fc4a /scripts/postprocessing_create_flipped_copies.py | |
parent | 4a666381bf98333ba4512db0f0033df5f6a08771 (diff) | |
download | stable-diffusion-webui-gfx803-11d23e8ca55c097ecfa255a05b63f194e25f08be.tar.gz stable-diffusion-webui-gfx803-11d23e8ca55c097ecfa255a05b63f194e25f08be.tar.bz2 stable-diffusion-webui-gfx803-11d23e8ca55c097ecfa255a05b63f194e25f08be.zip |
remove Train/Preprocessing tab and put all its functionality into extras batch images mode
Diffstat (limited to 'scripts/postprocessing_create_flipped_copies.py')
-rw-r--r-- | scripts/postprocessing_create_flipped_copies.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/scripts/postprocessing_create_flipped_copies.py b/scripts/postprocessing_create_flipped_copies.py new file mode 100644 index 00000000..3425571d --- /dev/null +++ b/scripts/postprocessing_create_flipped_copies.py @@ -0,0 +1,32 @@ +from PIL import ImageOps, Image
+
+from modules import scripts_postprocessing, ui_components
+import gradio as gr
+
+
+class ScriptPostprocessingCreateFlippedCopies(scripts_postprocessing.ScriptPostprocessing):
+ name = "Create flipped copies"
+ order = 4000
+
+ def ui(self):
+ with ui_components.InputAccordion(False, label="Create flipped copies") as enable:
+ with gr.Row():
+ option = gr.CheckboxGroup(value=["Horizontal"], choices=["Horizontal", "Vertical", "Both"], show_label=False)
+
+ return {
+ "enable": enable,
+ "option": option,
+ }
+
+ def process(self, pp: scripts_postprocessing.PostprocessedImage, enable, option):
+ if not enable:
+ return
+
+ if "Horizontal" in option:
+ pp.extra_images.append(ImageOps.mirror(pp.image))
+
+ if "Vertical" in option:
+ pp.extra_images.append(pp.image.transpose(Image.Transpose.FLIP_TOP_BOTTOM))
+
+ if "Both" in option:
+ pp.extra_images.append(pp.image.transpose(Image.Transpose.FLIP_TOP_BOTTOM).transpose(Image.Transpose.FLIP_LEFT_RIGHT))
|