K-means算法应用:图片压缩
Posted 1158z
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了K-means算法应用:图片压缩相关的知识,希望对你有一定的参考价值。
from sklearn.datasets import load_sample_image import matplotlib.pyplot as plt from sklearn.cluster import KMeans import numpy as np flower=load_sample_image(‘flower.jpg‘)#原始图片 plt.imshow(flower) plt.show() image=flower[::3,::3]#降低原始图片的分辨率 plt.imshow(image) plt.show() #利用Kmeans对图片进行压缩 x=image.reshape(-1,3)#改变数组的形状 n_colors=64 model=KMeans(n_colors) labels=model.fit_predict(x) colors=model.cluster_centers_ new_image=colors[labels] new_image=new_image.reshape(image.shape) plt.imshow(new_image.astype(np.uint8)) plt.show()
#原始图片与新图片所占用内存的大小 import sys print(sys.getsizeof(flower)) print(sys.getsizeof(new_image)) #原始图片与新图片保存成文件 import matplotlib.image as img img.imsave("F:\\flower.jpg",flower) img.imsave("F:\\flower_zip.jpg",image)
以上是关于K-means算法应用:图片压缩的主要内容,如果未能解决你的问题,请参考以下文章