File size: 4,933 Bytes
96b3fb1
da89e26
96b3fb1
 
 
 
 
 
 
 
18ce2cc
96b3fb1
 
 
 
 
 
 
 
ed531c4
96b3fb1
 
 
 
ed531c4
96b3fb1
 
 
 
 
 
 
 
 
 
 
 
 
 
0ae9725
f62e8fb
96b3fb1
 
 
 
 
ba54bc3
18ce2cc
96b3fb1
 
 
ed531c4
96b3fb1
 
0ae9725
 
 
 
 
 
 
 
 
 
96b3fb1
 
 
 
0ae9725
96b3fb1
 
 
 
 
 
 
 
 
0ae9725
 
 
 
 
 
 
 
 
 
 
 
 
 
96b3fb1
742e0b4
0ae9725
96b3fb1
10f851e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# This file is adapted from https://github.com/lllyasviel/ControlNet/blob/f4748e3630d8141d7765e2bd9b1e348f47847707/gradio_scribble2image_interactive.py
# The original license file is LICENSE.ControlNet in this repo.
import gradio as gr
import numpy as np


def create_canvas(w, h):
    return np.zeros(shape=(h, w, 3), dtype=np.uint8) + 255


def create_demo(process, max_images=12, default_num_images=3):
    with gr.Blocks() as demo:
        with gr.Row():
            gr.Markdown(
                '## Control Stable Diffusion with Interactive Scribbles')
        with gr.Row():
            with gr.Column():
                canvas_width = gr.Slider(label='Canvas Width',
                                         minimum=256,
                                         maximum=512,
                                         value=512,
                                         step=1)
                canvas_height = gr.Slider(label='Canvas Height',
                                          minimum=256,
                                          maximum=512,
                                          value=512,
                                          step=1)
                create_button = gr.Button(label='Start',
                                          value='Open drawing canvas!')
                input_image = gr.Image(source='upload',
                                       type='numpy',
                                       tool='sketch')
                gr.Markdown(
                    value=
                    'Do not forget to change your brush width to make it thinner. (Gradio do not allow developers to set brush width so you need to do it manually.) '
                    'Just click on the small pencil icon in the upper right corner of the above block.'
                )
                create_button.click(fn=create_canvas,
                                    inputs=[canvas_width, canvas_height],
                                    outputs=input_image,
                                    queue=False)
                prompt = gr.Textbox(label='Prompt')
                run_button = gr.Button(label='Run')
                with gr.Accordion('Advanced options', open=False):
                    num_samples = gr.Slider(label='Images',
                                            minimum=1,
                                            maximum=max_images,
                                            value=default_num_images,
                                            step=1)
                    image_resolution = gr.Slider(label='Image Resolution',
                                                 minimum=256,
                                                 maximum=512,
                                                 value=512,
                                                 step=256)
                    num_steps = gr.Slider(label='Steps',
                                          minimum=1,
                                          maximum=100,
                                          value=20,
                                          step=1)
                    guidance_scale = gr.Slider(label='Guidance Scale',
                                               minimum=0.1,
                                               maximum=30.0,
                                               value=9.0,
                                               step=0.1)
                    seed = gr.Slider(label='Seed',
                                     minimum=-1,
                                     maximum=2147483647,
                                     step=1,
                                     randomize=True)
                    a_prompt = gr.Textbox(
                        label='Added Prompt',
                        value='best quality, extremely detailed')
                    n_prompt = gr.Textbox(
                        label='Negative Prompt',
                        value=
                        'longbody, lowres, bad anatomy, bad hands, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality'
                    )
            with gr.Column():
                result = gr.Gallery(label='Output',
                                    show_label=False,
                                    elem_id='gallery').style(grid=2,
                                                             height='auto')
        inputs = [
            input_image,
            prompt,
            a_prompt,
            n_prompt,
            num_samples,
            image_resolution,
            num_steps,
            guidance_scale,
            seed,
        ]
        prompt.submit(fn=process, inputs=inputs, outputs=result)
        run_button.click(fn=process, inputs=inputs, outputs=result)
    return demo


if __name__ == '__main__':
    from model import Model
    model = Model()
    demo = create_demo(model.process_scribble_interactive)
    demo.queue().launch()