侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

使用python实现男神女神颜值打分系统(推荐)

Python  /  管理员 发布于 7年前   166

先给大家展示效果图,感觉不错,请参考实现代码。


具体代码如下所示:

#!/usr/bin/env python# -*- coding:utf-8 -*-"""pip install pillowpip install baidu-aippip install tkinter"""import PILimport timeimport base64import tkinter as tkfrom PIL import Imagefrom PIL import ImageTkfrom aip import AipFacefrom tkinter.filedialog import askopenfilename# 配置百度aip参数APP_ID = '15768642'API_KEY = 'xhiiGmGPRCRj10XIqVlVeCky'SECRET_KEY = 'ZDMMAO7StwTKzW8BspVQxvoGtdgSW4yI'a_face = AipFace(APP_ID, API_KEY, SECRET_KEY)image_type = 'BASE64'options = {'face_field': 'age,gender,beauty'}def get_file_content(file_path):  """获取文件内容"""  with open(file_path, 'rb') as fr:    content = base64.b64encode(fr.read())    return content.decode('utf8')def face_score(file_path):  """脸部识别分数"""  result = a_face.detect(get_file_content(file_path), image_type, options)  print(result)  age = result['result']['face_list'][0]['age']  beauty = result['result']['face_list'][0]['beauty']  gender = result['result']['face_list'][0]['gender']['type']  return age, beauty, genderclass ScoreSystem():  """打分系统类"""  root = tk.Tk()  # 修改程序框的大小  root.geometry('800x500')  # 添加程序框标题  root.title('女神/男神颜值打分系统')  # 修改背景色  canvas = tk.Canvas(root,width=800, # 指定Canvas组件的宽度height=500, # 指定Canvas组件的高度bg='#E6E6FA') # 指定Canvas组件的背景色  canvas.pack()  def start_interface(self):    """主运行函数"""    self.title()    self.time_component()    # 打开本地文件    tk.Button(self.root, text='打开文件', command=self.show_original_pic).place(x=50, y=150)    # 进行颜值评分    tk.Button(self.root, text='运行程序', command=self.open_files2).place(x=50, y=230)    # 显示帮助文档    tk.Button(self.root, text='帮助文档', command=self.show_help).place(x=50, y=310)    # 退出系统    tk.Button(self.root, text='退出软件', command=self.quit).place(x=50, y=390)    # 显示图框标题    tk.Label(self.root, text='原图', font=10).place(x=380, y=120)    # 修改图片大小    self.label_img_original = tk.Label(self.root)    # 设置显示图框背景    self.cv_orinial = tk.Canvas(self.root, bg='white', width=270, height=270)    # 设置显示图框边框    self.cv_orinial.create_rectangle(8, 8, 260, 260, width=1, outline='red')    # 设置位置    self.cv_orinial.place(x=265, y=150)    # 显示图片位置    self.label_img_original.place(x=265, y=150)    # 设置评分标签    tk.Label(self.root, text='性别', font=10).place(x=680, y=150)    self.text1 = tk.Text(self.root, width=10, height=2)    tk.Label(self.root, text='年龄', font=10).place(x=680, y=250)    self.text2 = tk.Text(self.root, width=10, height=2)    tk.Label(self.root, text='评分', font=10).place(x=680, y=350)    self.text3 = tk.Text(self.root, width=10, height=2)    # 填装文字    self.text1.place(x=680, y=175)    self.text2.place(x=680, y=285)    self.text3.place(x=680, y=385)    # 开启循环    self.root.mainloop()  def show_original_pic(self):    """放入文件"""    self.path_ = askopenfilename(title='选择文件')    # 处理文件    img = Image.open(fr'{self.path_}')    img = img.resize((270, 270), PIL.Image.ANTIALIAS) # 调整图片大小至270*270    # 生成tkinter图片对象    img_png_original = ImageTk.PhotoImage(img)    # 设置图片对象    self.label_img_original.config(image=img_png_original)    self.label_img_original.image = img_png_original    self.cv_orinial.create_image(5, 5, anchor='nw', image=img_png_original)  def open_files2(self):    # 获取百度API接口获得的年龄、分数、性别    age, score, gender = face_score(self.path_)    # 清楚text文本框内容并进行插入    self.text1.delete(1.0, tk.END)    self.text1.tag_config('red', foreground='RED')    self.text1.insert(tk.END, gender, 'red')    self.text2.delete(1.0, tk.END)    self.text2.tag_config('red', foreground='RED')    self.text2.insert(tk.END, age, 'red')    self.text3.delete(1.0, tk.END)    self.text3.tag_config('red', foreground='RED')    self.text3.insert(tk.END, score, 'red')  def show_help(self):    """显示帮助"""    pass  def quit(self):    """退出"""    self.root.quit()  def get_time(self, lb):    """获取时间"""    time_str = time.strftime("%Y-%m-%d %H:%M:%S") # 获取当前的时间并转化为字符串    lb.configure(text=time_str) # 重新设置标签文本    self.root.after(1000, self.get_time, lb) # 每隔1s调用函数 get_time自身获取时间  def time_component(self):    """时间组件"""    lb = tk.Label(self.root, text='', fg='blue', font=("黑体", 15))    lb.place(relx=0.75, rely=0.90)    self.get_time(lb)  def title(self):    """标题设计"""    lb = tk.Label(self.root, text='女神/男神颜值打分系统',           bg='#6495ED',           fg='lightpink', font=('华文新魏', 32),           width=20,           height=2,           # relief=tk.SUNKEN           )    lb.place(x=200, y=10)score_system = ScoreSystem()score_system.start_interface()

总结

以上所述是小编给大家介绍的使用python实现男神女神颜值打分系统,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!


  • 上一条:
    如何关掉pycharm中的python console(图解)
    下一条:
    python实现根据文件格式分类
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • Laravel 11.15版本发布 - Eloquent Builder中添加的泛型(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客