先给大家展示效果图,感觉不错,请参考实现代码。
具体代码如下所示:
#!/usr/bin/env python # -*- coding:utf-8 -*- """ pip install pillow pip install baidu-aip pip install tkinter """ import PIL import time import base64 import tkinter as tk from PIL import Image from PIL import ImageTk from aip import AipFace from 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, gender class 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实现男神女神颜值打分系统,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“使用python实现男神女神颜值打分系统(推荐)”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月14日
2024年11月14日
- 黑鸭子2003《聆听柔情HQCD》[日本版][WAV+CUE]
- 群星《奔赴!万人现场 第5期》[FLAC/分轨][587.07MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[320K/MP3][109.49MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[FLAC/分轨][527.23MB]
- LOL双城之战大乱斗什么时候更新 双城大乱斗上线更新时间介绍
- s14全球总决赛冠军皮肤有什么 2024T1冠军皮肤选择一览
- faker加里奥s14决赛什么出装 faker加里奥s14决赛出装介绍
- 《马里奥与路易吉RPG:兄弟齐航》Fami通34分:路易吉存在感拉满
- 数据挖掘者新发现:NS继任机型或支持4K分辨率
- 宫本茂谈任天堂未来:研发费用增加但注重创意与传承
- 陈小云.2000-餐厅综艺金榜【海丽唱片】【WAV+CUE】
- 卓文萱.2008-翻滚吧!蛋炒饭电视原声带【滚石】【FLAC分轨】
- 顺子.2001-AND.MUSICS.THERE【EMI百代】【WAV+CUE】
- 《三国志8重置版》劝降机制介绍
- 《欢欣森活》最新官方配置要求一览