1 Star 0 Fork 258

cheereqwertyuiop/书法体识别APP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
util.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
cheereqwertyuiop 提交于 2024-05-22 14:32 . update util.py.
# 引入必要的库
import os
import time
from tkinter import Image
import numpy as np
import yaml
import joblib
from PIL import Image
# 获取 0_setting.yaml 中的键 key 对应的值 value
def get(key):
with open("0_setting.yaml", "r", encoding='utf-8') as f:
data = yaml.safe_load(f)
value = data[key]
return value
# 预处理图像, 把图像设置为指定大小之后,展平返回
def preprocess_image(file_name, new_size):
# 1. 读取图像灰度图
img = Image.open(file_name).convert('L')
# 2. 调整图像大小为 new_size
img = img.resize(new_size)
# 将PIL Image对象转换为NumPy数组以便后续处理
img = np.array(img)
# 3. 将图像展平为一维数组
img = img.flatten()
return img
# 用joblib把叫做 name 的对象 obj 保存(序列化)到位置 loc
def dump(obj, name, loc):
start = time.time()
print(f"把{name}保存到{loc}")
# 此处序列化对象
joblib.dump(obj, loc)
end = time.time()
print(f"保存完毕,文件位置:{loc}, 大小:{os.path.getsize(loc) / 1024 / 1024:.3f}M")
print(f"运行时间:{end - start:.3f}秒")
# 用joblib读取(反序列化)位置loc的对象obj,对象名为name
def load(name, loc):
print(f"从{loc}提取文件{name}")
# 此处反序列化对象
obj = joblib.load(loc)
return obj
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cheereqwertyuiop/shufa_app.git
git@gitee.com:cheereqwertyuiop/shufa_app.git
cheereqwertyuiop
shufa_app
书法体识别APP
master

搜索帮助