Commit 4068429a authored by storyicon's avatar storyicon

fix: Coordinate 'right' is less than 'left'

Signed-off-by: default avatarstoryicon <storyicon@foxmail.com>
parent e73a7e40
...@@ -9,8 +9,8 @@ def get_crop_region(mask, pad=0): ...@@ -9,8 +9,8 @@ def get_crop_region(mask, pad=0):
if box: if box:
x1, y1, x2, y2 = box x1, y1, x2, y2 = box
else: # when no box is found else: # when no box is found
x1, y1 = mask_img.size x1 = y1 = 0
x2 = y2 = 0 x2, y2 = mask_img.size
return max(x1 - pad, 0), max(y1 - pad, 0), min(x2 + pad, mask_img.size[0]), min(y2 + pad, mask_img.size[1]) return max(x1 - pad, 0), max(y1 - pad, 0), min(x2 + pad, mask_img.size[0]), min(y2 + pad, mask_img.size[1])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment