python实现AI抠图

python实现人工智能抠图

自己是个PS小白,没办法只能通过技术来证明自己。
话不多说,直接上代码

from removebg import RemoveBg
import requests
import os
if __name__ == '__main__':
    path = '%s\picture'%os.getcwd()
    ispath = os.path.exists(path)
    if not ispath:
        os.mkdir(path)
    response = requests.post(
        'https://api.remove.bg/v1.0/removebg',
        files={'image_file': open(path+'/juqiamyi.jpg', 'rb')},
        # data={'size': 'auto','bg_color':'FFB6C1'},
        data={'size': 'auto'},
        headers={'X-Api-Key': '****YOU API KEY****'},
    )
    if response.status_code == requests.codes.ok:
        with open(path+'/juqiamyi.png', 'wb') as out:
            out.write(response.content)
    else:
        print("Error:", response.status_code, response.text)

说明一下,主要是调用第三方的api,申请一个账户会得到一个KEY,每个账户没一个月有50次免费试用次数。.

python实现AI抠图_第1张图片

抠过图后:

python实现AI抠图_第2张图片

你可能感兴趣的:(人工智能)