1 Star 7 Fork 1

FengWei2000/CBIR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
root.py 504 Bytes
一键复制 编辑 原始数据 按行查看 历史
FengWei2000 提交于 2021-03-19 15:22 . Add files via upload
"""
主界面
"""
from Selectdir import *
# 创建主界面
root = tk.Tk()
root.title('CBIR')
photo = tk.PhotoImage(file="a.gif") # 背景图片
# 添加背景和标题
lb0 = tk.Label(root, image=photo, compound=tk.CENTER)
lb0.place(relx=0, rely=0, relwidth=1, relheight=1)
lb1 = tk.Label(root, text='请输入需要检索的图片', font=("宋体", 25), image=photo, compound=tk.CENTER)
lb1.place(relx=0.35, rely=0.2, relwidth=0.3, relheight=0.1)
Selectdir(root)
root.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/FengWei2000/CBIR.git
[email protected]:FengWei2000/CBIR.git
FengWei2000
CBIR
CBIR
main

搜索帮助