image2palette()将图像解析为L / a / b空间中的像素,并返回通过k-means方法聚类的主要颜色分量。 它还返回颜色和调色板的名称。
--- 用法示例
%% (1) 版本 1. 预定义图像nCluster = 4; imagefullpath = [密码, '\' 'football.jpg']; image2palette( nCluster, imagefullpath );
%% (2) 版本 2. 使用 GUI 句柄选择图像nCluster = 4; image2palette( nCluster )
颜色标签参考: https : //en.wikipedia.org/wiki/Web_colors
2021-08-22 14:35:20
32KB
matlab
1