remove commented-out mask conversion code in inpaint function
Browse files
app.py
CHANGED
@@ -61,9 +61,6 @@ def inpaint(
|
|
61 |
background, mask = prepare_image_and_mask(
|
62 |
image, padding_top, padding_bottom, padding_left, padding_right
|
63 |
)
|
64 |
-
# mask = mask.convert("L")
|
65 |
-
# cnet_image = background.copy()
|
66 |
-
# cnet_image.paste(0, (0, 0), mask)
|
67 |
|
68 |
result = pipe(
|
69 |
prompt=prompt,
|
|
|
61 |
background, mask = prepare_image_and_mask(
|
62 |
image, padding_top, padding_bottom, padding_left, padding_right
|
63 |
)
|
|
|
|
|
|
|
64 |
|
65 |
result = pipe(
|
66 |
prompt=prompt,
|