Spaces:
Runtime error
Runtime error
Vivien Chappelier
commited on
Commit
Β·
481b311
1
Parent(s):
b5b40ac
retry the ImageEditor
Browse files
app.py
CHANGED
@@ -51,17 +51,11 @@ class BZHStableSignatureDemo(object):
|
|
51 |
self.pipe.vae.load_state_dict(sd, strict=False)
|
52 |
|
53 |
output = self.pipe(prompt, num_inference_steps=4, guidance_scale=0.0, output_type="pil")
|
54 |
-
return output.images[0]
|
55 |
|
56 |
-
|
57 |
-
def pad(img, padding, mode="edge"):
|
58 |
-
npimg = np.asarray(img)
|
59 |
-
nppad = ((padding[1], padding[3]), (padding[0], padding[2]), (0,0))
|
60 |
-
npimg = np.pad(npimg, nppad, mode=mode)
|
61 |
-
return Image.fromarray(npimg)
|
62 |
-
|
63 |
-
def attack_detect(self, img, jpeg_compression, downscale, saturation):
|
64 |
|
|
|
65 |
# attack
|
66 |
if downscale != 1:
|
67 |
size = img.size
|
@@ -121,7 +115,7 @@ def interface():
|
|
121 |
with gr.Row():
|
122 |
btn1 = gr.Button("Generate")
|
123 |
with gr.Row():
|
124 |
-
watermarked_image = gr.
|
125 |
with gr.Column():
|
126 |
downscale = gr.Slider(1, 3, value=1, step=0.1, label="Downscale ratio")
|
127 |
saturation = gr.Slider(0, 2, value=1, step=0.1, label="Color saturation")
|
|
|
51 |
self.pipe.vae.load_state_dict(sd, strict=False)
|
52 |
|
53 |
output = self.pipe(prompt, num_inference_steps=4, guidance_scale=0.0, output_type="pil")
|
54 |
+
return { "background": output.images[0] }
|
55 |
|
56 |
+
def attack_detect(self, img_edit, jpeg_compression, downscale, saturation):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
+
img = img_edit["composite"]
|
59 |
# attack
|
60 |
if downscale != 1:
|
61 |
size = img.size
|
|
|
115 |
with gr.Row():
|
116 |
btn1 = gr.Button("Generate")
|
117 |
with gr.Row():
|
118 |
+
watermarked_image = gr.ImageEditor(type="pil", width=512, height=512)
|
119 |
with gr.Column():
|
120 |
downscale = gr.Slider(1, 3, value=1, step=0.1, label="Downscale ratio")
|
121 |
saturation = gr.Slider(0, 2, value=1, step=0.1, label="Color saturation")
|