您好,登錄后才能下訂單哦!
換臉!
這段時間,deepfakes搞得火熱,比方說把《射雕英雄傳》里的朱茵換成了楊冪,看下面的圖!毫無違和感!
其實早在之前,基于AI換臉的技術就得到了應用,比方說《速度與激情7》里面的演員保羅.沃克,由于發生意外,
后期的視頻都是由他的兄弟完成拍攝,然后再對其換臉,最終也就是我們影院看到的效果。
當然,也有人把這項技術應用在其他的領域,例如把某種電影的女主換成了蓋爾.加朵(《神奇女俠》的扮演者),,,
這真的是對“技術是一把又刃劍”闡述的十分到位。。。
關于deepfakes這里不再詳細說明,好吧,小編承認是來蹭熱度的。。。
下面來介紹一種對照片的簡單換臉方法。
本篇介紹的換臉方法需要借助Face++,關于Face++的API,大家可自行查看說明文檔,都比較簡單,小編在這里就不做具體
說明了:
文檔地址:https://console.faceplusplus.com.cn/documents/20813963
1.配置工具:
pip install requests pip install simplejson
2.獲取Face++ api_key和secret
Face++網址:https://console.faceplusplus.com.cn/dashboard
3.換臉步驟
調用的庫
import requests import simplejson import json import base64
第一步,獲取人臉關鍵點,代碼如下說述:
def find_face(imgpath): print("finding") http_url = 'https://api-cn.faceplusplus.com/facepp/v3/detect' data = {"api_key": '自己申請', "api_secret": '自己申請', "image_url": imgpath, "return_landmark": 1} files = {"image_file": open(imgpath, "rb")} response = requests.post(http_url, data=data, files=files) req_con = response.content.decode('utf-8') req_dict = json.JSONDecoder().decode(req_con) this_json = simplejson.dumps(req_dict) this_json2 = simplejson.loads(this_json) faces = this_json2['faces'] list0 = faces[0] rectangle = list0['face_rectangle'] # print(rectangle) return rectangle
第二步,換臉,其中圖片的大小應不超過2M,代碼如下所述:
#number表示換臉的相似度 def merge_face(image_url_1,image_url_2,image_url,number): ff1 = find_face(image_url_1) ff2 = find_face(image_url_2) rectangle1 = str(str(ff1['top']) + "," + str(ff1['left']) + "," + str(ff1['width']) + "," + str(ff1['height'])) rectangle2 = str(ff2['top']) + "," + str(ff2['left']) + "," + str(ff2['width']) + "," + str(ff2['height']) url_add = "https://api-cn.faceplusplus.com/imagepp/v1/mergeface" f1 = open(image_url_1, 'rb') f1_64 = base64.b64encode(f1.read()) f1.close() f2 = open(image_url_2, 'rb') f2_64 = base64.b64encode(f2.read()) f2.close() data = {"api_key": '自己申請', "api_secret": '自己申請', "template_base64": f1_64, "template_rectangle": rectangle1, "merge_base64": f2_64, "merge_rectangle": rectangle2, "merge_rate": number} response = requests.post(url_add, data=data) req_con = response.content.decode('utf-8') req_dict = json.JSONDecoder().decode(req_con) result = req_dict['result'] imgdata = base64.b64decode(result) file = open(image_url, 'wb') file.write(imgdata) file.close()
測試
def test(): image1 = r"F:\GXT.bmp" image2 = r"F:\MSC.bmp" image = r"F:\MEG.bmp" merge_face(image2,image1,image,90)
測試結果:
左圖:關某某
右圖:馬某某
中圖:MERGE
以上所述是小編給大家介紹的Python換臉實例詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。