// // // //

2020年3月2日

摘要: 图像分割是一种图像处理方法, 它是指将一副图像分割成若干个互不相交的区域; 图像分割实质就是像素的聚类; 图像分割可以分为两类:基于边缘的分割,基于区域的分割, 聚类就是基于区域的分割; KMeans 实现图像分割 KMeans 分割图像实质上是对像素的聚类,每个类有个代表像素,把原始像素替换成该类 阅读全文
posted @ 2020-03-02 13:55 努力的孔子 阅读(1334) 评论(0) 推荐(0) 编辑
 
摘要: shape:返回 w h data = np.array([[1, 2], [3, 4]]) shape = data.shape print(shape) # (2, 2) size:返回 w x h print(np.ones((3, 4)).size) # 12 resize and resh 阅读全文
posted @ 2020-03-02 11:33 努力的孔子 阅读(250) 评论(0) 推荐(0) 编辑