mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
3e068de0dc
using the order from before the rework
11d23e8ca5
31 lines
971 B
Python
31 lines
971 B
Python
from modules import scripts_postprocessing, ui_components, deepbooru, shared
|
|
import gradio as gr
|
|
|
|
|
|
class ScriptPostprocessingCeption(scripts_postprocessing.ScriptPostprocessing):
|
|
name = "Caption"
|
|
order = 4040
|
|
|
|
def ui(self):
|
|
with ui_components.InputAccordion(False, label="Caption") as enable:
|
|
option = gr.CheckboxGroup(value=["Deepbooru"], choices=["Deepbooru", "BLIP"], show_label=False)
|
|
|
|
return {
|
|
"enable": enable,
|
|
"option": option,
|
|
}
|
|
|
|
def process(self, pp: scripts_postprocessing.PostprocessedImage, enable, option):
|
|
if not enable:
|
|
return
|
|
|
|
captions = [pp.caption]
|
|
|
|
if "Deepbooru" in option:
|
|
captions.append(deepbooru.model.tag(pp.image))
|
|
|
|
if "BLIP" in option:
|
|
captions.append(shared.interrogator.interrogate(pp.image.convert("RGB")))
|
|
|
|
pp.caption = ", ".join([x for x in captions if x])
|