make crop mode use more context
This commit is contained in:
parent
9b95376a79
commit
a5e840765e
@ -120,10 +120,30 @@ class InpaintModel:
|
|||||||
w = box_w + config.hd_strategy_crop_margin * 2
|
w = box_w + config.hd_strategy_crop_margin * 2
|
||||||
h = box_h + config.hd_strategy_crop_margin * 2
|
h = box_h + config.hd_strategy_crop_margin * 2
|
||||||
|
|
||||||
l = max(cx - w // 2, 0)
|
_l = cx - w // 2
|
||||||
t = max(cy - h // 2, 0)
|
_r = cx + w // 2
|
||||||
r = min(cx + w // 2, img_w)
|
_t = cy - h // 2
|
||||||
b = min(cy + h // 2, img_h)
|
_b = cy + h // 2
|
||||||
|
|
||||||
|
l = max(_l, 0)
|
||||||
|
r = min(_r, img_w)
|
||||||
|
t = max(_t, 0)
|
||||||
|
b = min(_b, img_h)
|
||||||
|
|
||||||
|
# try to get more context when crop around image edge
|
||||||
|
if _l < 0:
|
||||||
|
r += abs(_l)
|
||||||
|
if _r > img_w:
|
||||||
|
l -= (_r - img_w)
|
||||||
|
if _t < 0:
|
||||||
|
b += abs(_t)
|
||||||
|
if _b > img_h:
|
||||||
|
t -= (_b - img_h)
|
||||||
|
|
||||||
|
l = max(l, 0)
|
||||||
|
r = min(r, img_w)
|
||||||
|
t = max(t, 0)
|
||||||
|
b = min(b, img_h)
|
||||||
|
|
||||||
crop_img = image[t:b, l:r, :]
|
crop_img = image[t:b, l:r, :]
|
||||||
crop_mask = mask[t:b, l:r]
|
crop_mask = mask[t:b, l:r]
|
||||||
|
Loading…
Reference in New Issue
Block a user