1 Star 0 Fork 0

刘冰雨/分割砂岩截面图

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
create_clf.py 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
刘冰雨 提交于 2023-12-24 05:33 . update
import numpy as np
import cv2
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
import pickle
# 加载训练图像和对应的分区图像
image = cv2.imread("Sandstone_1.tif", 0)
segmentation = cv2.imread("Sandstone_1_segment.tif", 0)
# 输出图像形状
print("图像形状:", image.shape)
# 将图像和分区数据展平
X = image.reshape(-1, 1)
y = segmentation.reshape(-1)
print("完成从砂岩截面图1及其对应分区中获取X和y")
# 分割数据集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
print("完成train_test_split")
# 创建随机森林分类器模型
clf = RandomForestClassifier()
# 训练模型
clf.fit(X_train, y_train)
print("完成随机森林模型clf的训练")
# 在测试集上进行预测
accuracy = clf.score(X_test, y_test)
print("准确率:", accuracy)
print("准确率:", accuracy)
# 保存模型到硬盘
with open("clf.pkl", "wb") as file:
pickle.dump(clf, file)
print("已保存随机森林模型clf到硬盘")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-bingyu-666/image.git
git@gitee.com:liu-bingyu-666/image.git
liu-bingyu-666
image
分割砂岩截面图
master

搜索帮助