本文主要是介绍Python使用Rembg库去除图片背景,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、引入Rembg库
#库地址
https://github.com/danielgatis/rembg
#CPU使用
pip install rembg # for library
pip install rembg[cli] # for library + cli#GPU使用(系统支持onnxruntime-gpu)
pip install rembg[gpu] # for library
pip install rembg[gpu,cli] # for library + cli
二、使用
from rembg import remove
from PIL import Imageinput_path = 'input.png'
output_path = 'output.png'input = Image.open(input_path)
output = remove(input)
output.save(output_path)
三、效果
这篇关于Python使用Rembg库去除图片背景的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!