mirror of
https://git.mirrors.martin98.com/https://github.com/danielgatis/rembg
synced 2025-08-13 15:49:00 +08:00
fix issue 116
This commit is contained in:
parent
4e64eccb44
commit
ae46588c7e
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ with open("requirements.txt") as f:
|
||||
|
||||
setup(
|
||||
name="rembg",
|
||||
version="1.0.26",
|
||||
version="1.0.27",
|
||||
description="Remove image background",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
@ -92,14 +92,17 @@ def remove(
|
||||
mask = detect.predict(model, np.array(img)).convert("L")
|
||||
|
||||
if alpha_matting:
|
||||
cutout = alpha_matting_cutout(
|
||||
img,
|
||||
mask,
|
||||
alpha_matting_foreground_threshold,
|
||||
alpha_matting_background_threshold,
|
||||
alpha_matting_erode_structure_size,
|
||||
alpha_matting_base_size,
|
||||
)
|
||||
try:
|
||||
cutout = alpha_matting_cutout(
|
||||
img,
|
||||
mask,
|
||||
alpha_matting_foreground_threshold,
|
||||
alpha_matting_background_threshold,
|
||||
alpha_matting_erode_structure_size,
|
||||
alpha_matting_base_size,
|
||||
)
|
||||
except:
|
||||
cutout = naive_cutout(img, mask)
|
||||
else:
|
||||
cutout = naive_cutout(img, mask)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user