aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/poor_mans_outpainting.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/poor_mans_outpainting.py')
-rw-r--r--scripts/poor_mans_outpainting.py25
1 files changed, 20 insertions, 5 deletions
diff --git a/scripts/poor_mans_outpainting.py b/scripts/poor_mans_outpainting.py
index 08171877..a549fde3 100644
--- a/scripts/poor_mans_outpainting.py
+++ b/scripts/poor_mans_outpainting.py
@@ -21,7 +21,7 @@ class Script(scripts.Script):
if not is_img2img:
return None
- pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=128, step=8)
+ pixels = gr.Slider(label="Pixels to expand", minimum=8, maximum=256, step=8, value=128)
mask_blur = gr.Slider(label='Mask blur', minimum=0, maximum=64, step=1, value=4, visible=False)
inpainting_fill = gr.Radio(label='Masked content', choices=['fill', 'original', 'latent noise', 'latent nothing'], value='fill', type="index", visible=False)
direction = gr.CheckboxGroup(label="Outpainting direction", choices=['left', 'right', 'up', 'down'], value=['left', 'right', 'up', 'down'])
@@ -32,7 +32,7 @@ class Script(scripts.Script):
initial_seed = None
initial_info = None
- p.mask_blur = mask_blur
+ p.mask_blur = mask_blur * 2
p.inpainting_fill = inpainting_fill
p.inpaint_full_res = False
@@ -67,13 +67,18 @@ class Script(scripts.Script):
latent_mask = Image.new("L", (img.width, img.height), "white")
latent_draw = ImageDraw.Draw(latent_mask)
- latent_draw.rectangle((left + left//2, up + up//2, mask.width - right - right//2, mask.height - down - down//2), fill="black")
+ latent_draw.rectangle((
+ left + (mask_blur//2 if left > 0 else 0),
+ up + (mask_blur//2 if up > 0 else 0),
+ mask.width - right - (mask_blur//2 if right > 0 else 0),
+ mask.height - down - (mask_blur//2 if down > 0 else 0)
+ ), fill="black")
processing.torch_gc()
grid = images.split_grid(img, tile_w=p.width, tile_h=p.height, overlap=pixels)
grid_mask = images.split_grid(mask, tile_w=p.width, tile_h=p.height, overlap=pixels)
- grid_latent_mask = images.split_grid(mask, tile_w=p.width, tile_h=p.height, overlap=pixels)
+ grid_latent_mask = images.split_grid(latent_mask, tile_w=p.width, tile_h=p.height, overlap=pixels)
p.n_iter = 1
p.batch_size = 1
@@ -85,8 +90,13 @@ class Script(scripts.Script):
work_latent_mask = []
work_results = []
- for (_, _, row), (_, _, row_mask), (_, _, row_latent_mask) in zip(grid.tiles, grid_mask.tiles, grid_latent_mask.tiles):
+ for (y, h, row), (_, _, row_mask), (_, _, row_latent_mask) in zip(grid.tiles, grid_mask.tiles, grid_latent_mask.tiles):
for tiledata, tiledata_mask, tiledata_latent_mask in zip(row, row_mask, row_latent_mask):
+ x, w = tiledata[0:2]
+
+ if x >= left and x+w <= img.width - right and y >= up and y+h <= img.height - down:
+ continue
+
work.append(tiledata[2])
work_mask.append(tiledata_mask[2])
work_latent_mask.append(tiledata_latent_mask[2])
@@ -115,6 +125,11 @@ class Script(scripts.Script):
image_index = 0
for y, h, row in grid.tiles:
for tiledata in row:
+ x, w = tiledata[0:2]
+
+ if x >= left and x+w <= img.width - right and y >= up and y+h <= img.height - down:
+ continue
+
tiledata[2] = work_results[image_index] if image_index < len(work_results) else Image.new("RGB", (p.width, p.height))
image_index += 1