资源简介
1,登录界面两个key值为百度云账号注册应用key值;
2,此demo为Qt调用Python函数,所以必须先配置环境,把python安装目录下的libs和include配到Qt中的pro文件中;
3,py文件需放到exe同文件夹下才可以正确运行;
4,使用说明:https://blog.csdn.net/hdaioutgjht/article/details/85331801
代码片段和文件信息
import urllib urllib.request sys
import ssl
import json
import base64
import urllib.parse
def getAccessToken(apiKeysecretKey):
# client_id 为官网获取的AK, client_secret 为官网获取的SK
host = ‘https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=‘+apiKey+‘&client_secret=‘+secretKey
request = urllib.request.Request(host)
request.add_header(‘Content-Type‘ ‘application/json; charset=UTF-8‘)
response = urllib.request.urlopen(request)
content = response.read()
#if (content):
# print(content)
print(json.loads(content)[‘access_token‘])
return json.loads(content)[‘access_token‘]
def getResult(srcapiKeysecretKey):
print(‘go to python‘)
host = ‘https://aip.baidubce.com/rest/2.0/face/v3/detect?access_token=‘+getAccessToken(apiKeysecretKey)
request = urllib.request.Request(host)
request.add_header(‘Content-Type‘ ‘application/json; charset=UTF-8‘)
data = {}
print(‘4444‘)
data[‘image‘] = src
data[‘image_type‘]=‘base64‘
data[‘face_field‘]=‘agebeautygenderexpressionfaceshapeglassesrace‘
print(host)
data = urllib.parse.urlencode(data).encode(“utf-8“)
response = urllib.request.urlopen(requestdata=data)
print(‘go to python444‘)
content = response.read()
if (content):
print(content)
result = json.loads(content)[‘result‘][‘face_list‘][0]
#print(result[‘age‘]result[‘beauty‘]result[‘gender‘][‘type‘]result[‘expression‘][‘type‘]result[‘face_shape‘][‘type‘]result[‘glasses‘][‘type‘]result[‘race‘][‘type‘])
return (result[‘age‘]result[‘beauty‘]result[‘gender‘][‘type‘]result[‘expression‘][‘type‘]result[‘face_shape‘][‘type‘]result[‘glasses‘][‘type‘]result[‘race‘][‘type‘])
def main():
with open(“F:\\QtPro\\TestPython\\build-TestPython-Desktop_Qt_5_10_1_MSVC2015_64bit-Debug\\debug\\11.jpg““rb“) as f:
base64_data = base64.b64encode(f.read())
getResult(base64_data)
if __name__ == ‘__main__‘:
main()
# print(__name__)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-28 21:46 TestPython\
文件 2100 2018-12-28 17:25 TestPython\getAccessToken.py
文件 6854 2018-12-28 17:28 TestPython\login.ui
文件 5181 2018-12-28 21:44 TestPython\loginwidget.cpp
文件 5181 2018-12-28 21:45 TestPython\loginwidget.cpp.autosave
文件 720 2018-12-28 17:28 TestPython\loginwidget.h
文件 568 2018-12-28 20:21 TestPython\main.cpp
文件 1321 2018-12-28 20:30 TestPython\mainwindow.cpp
文件 555 2018-12-28 17:21 TestPython\mainwindow.h
文件 6227 2018-12-28 17:39 TestPython\mainwindow.ui
文件 209 2018-12-28 21:50 TestPython\ReadMe.txt.txt
文件 201 2018-12-28 21:28 TestPython\resource.qrc
文件 1375 2018-12-28 20:17 TestPython\TestPython.pro
文件 44421 2018-12-28 19:43 TestPython\TestPython.pro.user
文件 23817 2018-12-28 17:46 TestPython\TestPython.pro.user.bd9280d
文件 990 2018-12-28 20:33 TestPython\TestPython_zh.qm
文件 6552 2018-12-28 20:33 TestPython\TestPython_zh.ts
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论