摘要: 阅读全文
posted @ 2022-05-26 23:17 海_纳百川 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-26 23:08 海_纳百川 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-26 23:05 海_纳百川 阅读(27) 评论(0) 推荐(0) 编辑
摘要: cv2.threshold 探究 API定义: OpenCV 3.2.0 中,阈值处理的 api 定义如下: cv2.threshold (src, thresh, maxval, type) 即: cv2.threshold (源图片, 阈值, 填充色, 阈值类型) Args: src:源图片,必 阅读全文
posted @ 2022-05-26 16:04 海_纳百川 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Python collections模块之Counter详解 Counter() most_common() elements() update() subtract() collections模块 ==> Python标准库,数据结构常用的模块;collections包含了一些特殊的容器,针对Py 阅读全文
posted @ 2022-05-26 15:52 海_纳百川 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 2022年05月26日15:58:52 K均值聚类 K均值聚类 K均值聚类的基本步骤 K均值聚类模块 简单例子 K均值聚类 预测的是一个离散值时,做的工作就是“分类”。 预测的是一个连续值时,做的工作就是“回归”。 机器学习模型还可以将训练集中的数据划分为若干个组,每个组被称为一个“簇(cluste 阅读全文
posted @ 2022-05-26 15:16 海_纳百川 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 说到 super, 大家可能觉得很简单呀,不就是用来调用父类方法的嘛。如果真的这么简单的话也就不会有这篇文章了,且听我细细道来。 约定 在开始之前我们来约定一下本文所使用的 Python 版本。默认用的是 Python 3,也就是说:本文所定义的类都是新式类。如果你用到是 Python 2 的话,记 阅读全文
posted @ 2022-05-26 12:53 海_纳百川 阅读(208) 评论(0) 推荐(0) 编辑
摘要: import time data_time = time.strftime('%Y-%m-%d-%H-%M-%S', time.localtime(time.time())) # 返回结果为2022-05-26-10-43-26 阅读全文
posted @ 2022-05-26 10:44 海_纳百川 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1.正负样本选择 预测框一共分为三种情况:正例(positive)、负例(negative)、忽略样例(ignore)。 正例:任取一个ground truth, 与上面计算的10647个框全部计算IOU, IOU最大的预测框, 即为正例。并且一个预测框, 只能分配给一个ground truth。 阅读全文
posted @ 2022-05-26 09:12 海_纳百川 阅读(52) 评论(0) 推荐(0) 编辑
摘要: import os, glob, time def searchAllFilesByTimeReversed(path, reverse=True): return sorted(glob.glob(os.path.join(path, '*')), key=lambda x: time.strft 阅读全文
posted @ 2022-05-26 08:39 海_纳百川 阅读(44) 评论(0) 推荐(0) 编辑
本站总访问量