知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“Rembg”的源代码
←
Rembg
页面
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
Rembg是一个开源的[[Python]]软件包,用于自动去除图片背景。 默认使用[[U²-Net]]进行前景检测,使用[[PyMatting]]进行抠图。 ==简介== ===时间轴=== ===安装=== 仅使用cpu计算,安装rembg版本: pip install rembg 使用GPU加速, ==Python中使用== 使用[[pillow]]库进行,PIL的图片的操作。 <syntaxhighlight lang="python" > from rembg import remove from PIL import Image input_path = 'input.png' output_path = 'output.png' input = Image.open(input_path) output = remove(input) output.save(output_path) </syntaxhighlight> ==命令行中使用== ==参数== {| class="wikitable" ! 名称 ! 描述 ! 示例 |- | alpha_matting | 是否使用alpha matting参数,默认False, | |- | alpha_matting_foreground_threshold | 前景阈值,默认240 | |- | alpha_matting_background_threshold | 背景阈值,默认10 | |- | alpha_matting_erode_size | 默认10 | |- |only_mask | 默认False | |- | | | |} ==资源== ===官网=== * Rembg 官网:https://github.com/danielgatis/rembg * Rembg 源代码:https://github.com/danielgatis/rembg ===网站=== * https://github.com/xuebinqin/U-2-Net * https://github.com/pymatting/pymatting ===文章===
返回至“
Rembg
”。