中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何通過Python調用接口實現摳圖并改底色

發布時間:2022-10-24 17:29:52 來源:億速云 閱讀:190 作者:iii 欄目:編程語言

這篇文章主要介紹了如何通過Python調用接口實現摳圖并改底色的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何通過Python調用接口實現摳圖并改底色文章都會有所收獲,下面我們一起來看看吧。

一、注冊百度AI賬號,創建人像分割應用

  • 百度人像分割主頁:按步驟注冊,登錄,實名認證即可。

  • 在控制臺主頁找到人體分析

如何通過Python調用接口實現摳圖并改底色

創建應用

如何通過Python調用接口實現摳圖并改底色

里面的需要填寫的內容可以隨便寫,新用戶要去領取免費資源,不然使用不了。

如何通過Python調用接口實現摳圖并改底色

創建完成在應用列表記錄 API Key、Secret Key的值 ,稍后要用。

如何通過Python調用接口實現摳圖并改底色

至此,注冊賬號和創建應用的任務就完成了。

二、代碼實現

1.引入庫

import os
import requests
import base64
import cv2
import numpy as np
from PIL import Image
from pathlib import Path

path = os.getcwd()
paths = list(Path(path).glob('*'))

2.獲取Access Token

def get_access_token():
    url = 'https://aip.baidubce.com/oauth/2.0/token'
    data = {
        'grant_type': 'client_credentials',  # 固定值
        'client_id': '替換成你的API Key',  # 在開放平臺注冊后所建應用的API Key
        'client_secret': '替換成你的Secret Key'  # 所建應用的Secret Key
    }
    res = requests.post(url, data=data)
    res = res.json()
    access_token = res['access_token']
    return access_token

核心代碼

def removebg():
    try:
        request_url = "https://aip.baidubce.com/rest/2.0/image-classify/v1/body_seg"
        # 二進制方式打開圖片文件
        f = open(name, 'rb')
        img = base64.b64encode(f.read())
        params = {"image":img}
        access_token = get_access_token()
        request_url = request_url + "?access_token=" + access_token
        headers = {'content-type': 'application/x-www-form-urlencoded'}
        response = requests.post(request_url, data=params, headers=headers)
        if response:
            res = response.json()["foreground"]
            png_name=name.split('.')[0]+".png"
            with open(png_name,"wb") as f:
                data = base64.b64decode(res)
                f.write(data)
            fullwhite(png_name) #png圖片底色填充,視情況舍去
            png_jpg(png_name) #png格式轉jpg,視情況舍去
            os.remove(png_name) #刪除原png圖片,視情況舍去
            print(name+"\t處理成功!")
    except Exception as e:
        pass

4.圖片底色填充

def fullwhite(png_name):
    im = Image.open(png_name)
    x,y = im.size
    try:
        p = Image.new('RGBA', im.size, (255,255,255))        # 使用白色來填充背景,視情況更改
        p.paste(im, (0, 0, x, y), im)
        p.save(png_name)
    except:
        pass

5.圖片壓縮

#compress_rate:數值越小照片越模糊
def resize(compress_rate = 0.5):
    im = Image.open(name)
    w, h = im.size
    im_resize = im.resize((int(w*compress_rate), int(h*compress_rate)))
    resize_w, resieze_h = im_resize.size
    #quality 代表圖片質量,值越低越模糊
    im_resize.save(name)
    im.close()

6.獲取圖圖片大小

def get_size():
    size = os.path.getsize(name)
    return size / 1024

7.png格式轉jpg

def png_jpg(png_name):
    im = Image.open(png_name)
    bg=Image.new('RGB',im.size,(255,255,255))
    bg.paste(im)
    jpg_name = png_name.split('.')[0]+".jpg"
    #quality 代表圖片質量,值越低越模糊
    bg.save(jpg_name,quality=70)
    im.close()

8.主函數

if __name__ == '__main__':
    for i in paths:
        name = os.path.basename(i.name)
        if(name==os.path.basename(__file__)):
            continue
        size = get_size()
        ##照片壓縮
        while size >=900:
            size = get_size()
            resize()   
        removebg()
        print(" ")

9.完整代碼

#人像分割
import os
import requests
import base64
import cv2
import numpy as np
from PIL import Image
from pathlib import Path

path = os.getcwd()
paths = list(Path(path).glob('*'))

def get_access_token():
    url = 'https://aip.baidubce.com/oauth/2.0/token'
    data = {
        'grant_type': 'client_credentials',  # 固定值
        'client_id': '替換成你的API Key',  # 在開放平臺注冊后所建應用的API Key
        'client_secret': '替換成你的Secret Key'  # 所建應用的Secret Key
    }
    res = requests.post(url, data=data)
    res = res.json()
    access_token = res['access_token']
    return access_token
def png_jpg(png_name):
    im = Image.open(png_name)
    bg=Image.new('RGB',im.size,(255,255,255))
    bg.paste(im)
    jpg_name = png_name.split('.')[0]+".jpg"
    #quality 代表圖片質量,值越低越模糊
    bg.save(jpg_name,quality=70)
    im.close()

#compress_rate:數值越小照片越模糊
def resize(compress_rate = 0.5):
    im = Image.open(name)
    w, h = im.size
    im_resize = im.resize((int(w*compress_rate), int(h*compress_rate)))
    resize_w, resieze_h = im_resize.size
    #quality 代表圖片質量,值越低越模糊
    im_resize.save(name)
    im.close()
    
def get_size():
    size = os.path.getsize(name)
    return size / 1024
    
def fullwhite(png_name):
    im = Image.open(png_name)
    x,y = im.size
    try:
        # 使用白色來填充背景
        # (alpha band as paste mask).
        p = Image.new('RGBA', im.size, (255,255,255))
        p.paste(im, (0, 0, x, y), im)
        p.save(png_name)
    except:
        pass

def removebg():
    try:
        request_url = "https://aip.baidubce.com/rest/2.0/image-classify/v1/body_seg"
        # 二進制方式打開圖片文件
        f = open(name, 'rb')
        img = base64.b64encode(f.read())
        params = {"image":img}
        access_token = get_access_token()
        request_url = request_url + "?access_token=" + access_token
        headers = {'content-type': 'application/x-www-form-urlencoded'}
        response = requests.post(request_url, data=params, headers=headers)
        if response:
            res = response.json()["foreground"]
            png_name=name.split('.')[0]+".png"
            with open(png_name,"wb") as f:
                data = base64.b64decode(res)
                f.write(data)
            fullwhite(png_name)
            png_jpg(png_name)
            os.remove(png_name)
            print(name+"\t處理成功!")
    except Exception as e:
        pass

if __name__ == '__main__':
    for i in paths:
        name = os.path.basename(i.name)
        if(name==os.path.basename(__file__)):
            continue
        size = get_size()
        ##照片壓縮
        while size >=900:
            size = get_size()
            resize()   
        removebg()
        print(" ")

[重要]使用前注意事項

1. 該程序會覆蓋原文件,使用前請備份文件,以免造成數據丟失
2. 將程序復制到和待處理的照片同目錄下,雙擊程序即可運行

關于“如何通過Python調用接口實現摳圖并改底色”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“如何通過Python調用接口實現摳圖并改底色”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

朝阳市| 西昌市| 会宁县| 内丘县| 海阳市| 沙坪坝区| 鹤山市| 谢通门县| 天峨县| 霍邱县| 邯郸市| 筠连县| 额济纳旗| 洱源县| 会昌县| 天水市| 托里县| 蓬莱市| 彭州市| 乌拉特中旗| 德化县| 四会市| 城固县| 龙胜| 丰县| 丹东市| 庆元县| 射阳县| 奉新县| 霍邱县| 洪泽县| 香河县| 延庆县| 金阳县| 阿拉善右旗| 信丰县| 中超| 资兴市| 乌兰察布市| 建水县| 龙岩市|