python实现人像动漫化的示例代码

作者:mxtianv 时间:2021-08-16 06:36:17 

利用百度api实现人像动漫化

python实现人像动漫化的示例代码

百度API地址:https://ai.baidu.com/tech/imageprocess/selfie_anime

技术文档:https://ai.baidu.com/ai-doc/IMAGEPROCESS/Mk4i6olx5

注册百度账号,开通实现人像动漫化,创建应用。

python实现人像动漫化的示例代码


# encoding:utf-8

import requests
import base64

# client_id 为官网获取的AK, client_secret 为官网获取的SK
host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=【官网获取的AK】&client_secret=【官网获取的SK】'
response = requests.get(host)
if response:
 access_token= response.json()["access_token"]

将上面的【官网获取的AK】【官网获取的SK】'  替换成自己的API Key 和 Secret Key


'''
人像动漫化
'''
request_url = "https://aip.baidubce.com/rest/2.0/image-process/v1/selfie_anime"
# 二进制方式打开需要处理图片文件
f = open('001.jpg', 'rb') # 打开需要处理的图片
img = base64.b64encode(f.read())

params = {"image":img}
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)
print(response)
if response:
 # 保存文件
 f = open('t.jpg', 'wb')
 img = (response.json()['image'])
 f.write(base64.b64decode(img))
 f.close()

来源:https://blog.csdn.net/mxtianv/article/details/106163311

标签:python,人像动漫化
0
投稿

猜你喜欢

  • vue通知提醒消息举例详解

    2024-05-10 14:17:03
  • Python实现微信翻译机器人的方法

    2022-11-27 08:35:21
  • 交互设计模式(二)-Pagination(分页,标记页数)

    2009-08-03 13:37:00
  • Python多进程同步Lock、Semaphore、Event实例

    2021-02-22 17:11:26
  • django-rest-swagger对API接口注释的方法

    2022-04-12 00:06:02
  • 一文详解Python如何优雅地对数据进行分组

    2022-05-20 01:10:15
  • canvas实现手机端用来上传用户头像的代码

    2023-09-16 02:30:54
  • 如何运行Python程序的方法

    2023-01-13 07:56:03
  • 如何了解SQL的执行频率

    2009-08-26 15:17:00
  • Vue实现自定义视频和图片上传的示例代码

    2024-05-21 10:30:21
  • python 实现图片裁剪小工具

    2022-04-27 18:15:15
  • python 3.7.0 下pillow安装方法

    2023-07-09 09:47:49
  • 用Python自动下载网站所有文件

    2021-02-09 18:57:35
  • Prometheus 监控MySQL使用grafana展示

    2024-01-21 07:18:53
  • 编写一个JS组件来说说call和apply的用法

    2008-11-23 17:11:00
  • 基于Python编写一个B站全自动抽奖的小程序

    2021-05-03 02:11:07
  • 基于google图表API的jquery组件 I

    2010-03-01 10:20:00
  • python实现由数组生成对称矩阵

    2022-12-09 15:01:53
  • FrontPage服务器扩展

    2008-03-05 13:05:00
  • python实现登录密码重置简易操作代码

    2022-12-08 13:34:43
  • asp之家 网络编程 m.aspxhome.com