摘要:
转载链接: https://www.cnblogs.com/wangxiaocvpr/p/11656589.html 图像简单滤波 对图像进行滤波,可以有两种效果:一种是平滑滤波,用来抑制噪声;另一种是微分算子,可以用来检测边缘和特征提取。skimage库中通过filters模块进行滤波操作。1、s 阅读全文
posted @ 2020-01-09 21:26
爽歪歪666
阅读(2070)
评论(0)
推荐(0)
摘要:
Kmeans,使用sklearn实现 1 from sklearn.cluster import KMeans 2 import numpy as np 3 X = np.array([[1, 2], [1, 4], [1, 0], 4 [10, 2], [10, 4], [10, 0]]) 5 k 阅读全文
posted @ 2020-01-09 15:54
爽歪歪666
阅读(180)
评论(0)
推荐(0)