08 2021 档案
scikit-learn源码学习之cluster.MeanShift
摘要:聚类部分的mean-shift算法终于看完了,网上这部分资料还是有些的,都是令人头疼数学公式,不过不如直接读源码来得直接些。
zcl-key!!!
#并行地在所有种子上执行迭代
#all_res为所有种子的迭代完的中心以及周围的邻居数
# execute iterations on all seeds in parallel
all_res = Parallel(n_jobs=n_jobs)(
delayed(_mean_shift_single_seed)
(seed, X, nbrs, max_iter) for seed in seeds)
#zcl-key!! 移动均值,这就是mean-shift名字的由来,每一步的迭代就是计算新的均值点
my_mean = np.mean(points_within, axis=0)
阅读全文
Nearest Neighbors 最近邻 综述
摘要:https://blog.csdn.net/mebiuw/article/details/51051453 Scikit-Learn 学习笔记(1) — Nearest Neighbors 最近邻 综述1 前言最近在做机器学习的作业,要用到Scilit-Learn这个东西,由于我这个人功利性比较明显
阅读全文
QMessageBox中的四种对话框
摘要:https://www.cnblogs.com/sklww/p/3810381.html QMessageBox中的四种对话框 QMessageBox中的四种对话框 ui_dialogtest.h文件: 自动关闭对话框 QMessageBox* box = new QMessageBox; QTim
阅读全文
Qt——QLineEdit使用总结
摘要:!!! https://www.cnblogs.com/hellovenus/p/5183593.html !!! Qt官方示例-QLineEdit编辑器 https://cloud.tencent.com/developer/article/1580400 QLineEdit是一个单行文本编辑控件
阅读全文
qt项目:大恒相机实时采集,单帧采集,并且在屏幕上显示,含有保存bmp图片功能
摘要:ref: https://blog.csdn.net/qq_35299223/article/details/103754599?utm_medium=distribute.pc_relevant_download.none-task-blog-2~default~searchFromBaidu~d
阅读全文