mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-06 21:09:01 +08:00
Merge branch 'dev'
This commit is contained in:
commit
fcc97ae477
@ -1,3 +1,8 @@
|
|||||||
|
## 1.9.3
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
* fix get_crop_region_v2 ([#15594](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/15594))
|
||||||
|
|
||||||
## 1.9.2
|
## 1.9.2
|
||||||
|
|
||||||
### Extensions and API:
|
### Extensions and API:
|
||||||
|
@ -16,7 +16,7 @@ def get_crop_region_v2(mask, pad=0):
|
|||||||
mask = mask if isinstance(mask, Image.Image) else Image.fromarray(mask)
|
mask = mask if isinstance(mask, Image.Image) else Image.fromarray(mask)
|
||||||
if box := mask.getbbox():
|
if box := mask.getbbox():
|
||||||
x1, y1, x2, y2 = box
|
x1, y1, x2, y2 = box
|
||||||
return max(x1 - pad, 0), max(y1 - pad, 0), min(x2 + pad, mask.size[0]), min(y2 + pad, mask.size[1]) if pad else box
|
return (max(x1 - pad, 0), max(y1 - pad, 0), min(x2 + pad, mask.size[0]), min(y2 + pad, mask.size[1])) if pad else box
|
||||||
|
|
||||||
|
|
||||||
def get_crop_region(mask, pad=0):
|
def get_crop_region(mask, pad=0):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user