超简单使用Python换脸实例
作者:feengg 时间:2021-07-31 17:03:36
换脸!
这段时间,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换脸实例详解整合网站的支持!
来源:https://blog.csdn.net/feengg/article/details/88539685
标签:Python,换脸
0
投稿
猜你喜欢
Win7下搭建python开发环境图文教程(安装Python、pip、解释器)
2023-08-09 00:46:47
Django forms表单 select下拉框的传值实例
2023-04-21 02:23:53
Pytorch随机数生成常用的4种方法汇总
2022-02-07 09:25:34
在pandas中遍历DataFrame行的实现方法
2022-02-16 13:13:26
ODBC连接数据库以SQLserver为例图文详解
2024-01-13 04:07:43
Python应用实现处理excel数据过程解析
2022-10-24 11:52:17
一个jquery日期选取插件源码
2009-12-23 19:15:00
Linux下Python获取IP地址的代码
2023-02-27 10:30:07
python pandas读取csv后,获取列标签的方法
2022-01-14 22:35:30
MySQL百万级高并发网站实战攻略
2009-03-25 15:49:00
详解mysql8.0创建用户授予权限报错解决方法
2024-01-26 08:58:31
Python绘制3d螺旋曲线图实例代码
2022-12-22 01:30:23
python中namedtuple函数的用法解析
2023-08-22 11:03:24
详解Python发送email的三种方式
2023-07-01 07:19:28
首页访问感受提升三步曲
2007-12-13 20:36:00
asp 读取文件和保存文件函数代码
2011-04-04 11:17:00
webpack下实现动态引入文件方法
2024-06-08 16:28:49
Python切割图片成九宫格的示例代码
2023-07-10 07:00:57
asp加载access数据库并生成XML文件范例
2008-07-22 12:41:00
使用Python实现企业微信的自动打卡功能
2021-02-27 02:41:34