当前位置:   article > 正文

百度AI攻略:图像风格转换_调用百度ai实现图像风格转换的方法sdk代码

调用百度ai实现图像风格转换的方法sdk代码

1.功能描述:

将图像转换成卡通画或素描风格,可用于开展趣味活动或集成到美图应用

2.平台接入

具体接入方式比较简单,可以参考我的另一个帖子,这里就不重复了:
http://ai.baidu.com/forum/topic/show/943327

3.调用攻略(Python3)及评测

3.1首先认证授权:

在开始调用任何API之前需要先进行认证授权,具体的说明请参考:

http://ai.baidu.com/docs#/Auth/top

具体Python3代码如下:

  1. # -*- coding: utf-8 -*-
  2. #!/usr/bin/env python
  3. import urllib
  4. import base64
  5. import json
  6. #client_id 为官网获取的AK, client_secret 为官网获取的SK
  7. client_id =【百度云应用的AK】
  8. client_secret =【百度云应用的SK】
  9. #获取token
  10. def get_token():
  11. host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=' + client_id + '&client_secret=' + client_secret
  12. request = urllib.request.Request(host)
  13. request.add_header('Content-Type', 'application/json; charset=UTF-8')
  14. response = urllib.request.urlopen(request)
  15. token_content = response.read()
  16. #print (token_content)
  17. if token_content:
  18. token_info = json.loads(token_content)
  19. token_key = token_info['access_token']
  20. return token_key

3.2图像风格转换分析接口调用:

详细说明请参考: https://ai.baidu.com/docs#/ImageProcessing-API/824a761a

说明的比较清晰,这里就不重复了。

大家需要注意的是:
API访问URL:https://aip.baidubce.com/rest/2.0/image-process/v1/style_trans
输入图像:base64编码后大小不超过4M,像素乘积不超过2000*2000,最短边至少50px,最长边最大4096px,长宽比3:1以内。注意:图片的base64编码是不包含图片头的,如(data:image/jpg;base64,)
支持的风格:cartoon:卡通画风格 pencil:素描风格

返回示例:
{
"log_id": "6876747463538438254",
"image": "处理后图片的Base64编码"
}

Python3调用代码如下:

  1. def style_trans(filename,resultfilename,option):
  2. request_url = "https://aip.baidubce.com/rest/2.0/image-process/v1/style_trans"
  3. # 二进制方式打开图片文件
  4. f = open(filename, 'rb')
  5. img = base64.b64encode(f.read())
  6. params = dict()
  7. params['image'] = img
  8. params['option'] = option
  9. params = urllib.parse.urlencode(params).encode("utf-8")
  10. #params = json.dumps(params).encode('utf-8')
  11. access_token = get_token()
  12. begin = time.perf_counter()
  13. request_url = request_url + "?access_token=" + access_token
  14. request = urllib.request.Request(url=request_url, data=params)
  15. request.add_header('Content-Type', 'application/x-www-form-urlencoded')
  16. response = urllib.request.urlopen(request)
  17. content = response.read()
  18. end = time.perf_counter()
  19. print('处理时长:'+'%.2f'%(end-begin)+'秒')
  20. if content:
  21. #print(content)
  22. content=content.decode('utf-8')
  23. #print (content)
  24. #print(content)
  25. data = json.loads(content)
  26. img_str=data['image']
  27. save_base_image(img_str,resultfilename)
  28. style_trans('../img/pose2.jpg','../img/pose2_cartoon.jpg','cartoon')

4.功能评测:
选用不同的数据对效果进行测试,具体效果如下(以下例子均来自网上):

先来一张植物的照片:

再看看人物的效果:


5.测试结论和建议

测试下来,整体识别效果不错,效果很有意思。百度应该是采用的SEQ2SEQ的模型,整体做的很不错,可以用来开发很多有意思的APP。期待未来新的风格上线。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/722451
推荐阅读
相关标签
  

闽ICP备14008679号