51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

使用 JavaScript 对图像进行量化并提取主要颜色

前言

前段时间在 Halo应用市场 中遇到希望主题和插件的封面图背景色为封面图主色的问题,于是乎需要根据封面图提取主色就想到使用 K-Means 算法来提取。

在图像处理中,图像是由像素点构成的,每个像素点都有一个颜色值,颜色值通常由 RGB 三个分量组成。因此,我们可以将图像看作是一个由颜色值构成的点云,每个点代表一个像素点。

为了更好地理解,我们可以将图像的颜色值可视化为一个 Scatter 3D 图。在 Scatter 3D 图中,每个点的坐标由 RGB 三个分量组成,点的颜色与其坐标对应的颜色值相同。

图像的颜色值量化

以下面的图片为例
k-means-example-whzc.jpg

它的色值分布为如下的图像
k-means-figure_1.png
从上述 RGB 3D Scatter Plot 图如果将相似的颜色值归为一类可以看出图像大概有三种主色调蓝色、绿色和粉色:
k-means-figure_2.jpg
如果我们从三簇中各选一个中心,如以 A、B、C三点表示 A(50, 150, 200)B(240, 150, 200)C(50, 100, 50) 并将每个数据点分配到最近的中心所在的簇中这个过程称之为聚类而这个中心称之为聚类中心,这样就可以得到 K 个以聚类中心为坐标的主色值。而 K-Means 算法是一种常用的聚类算法,它的基本思想就是将数据集分成 K 个簇,每个簇的中心点称为聚类中心,将每个数据点分配到最近的聚类中心所在的簇中。

K-Means 算法的实现过程如下:

  1. 初始化聚类中心:随机选择 K 个点作为聚类中心。

  2. 分配数据点到最近的聚类中心所在的簇中:对于每个数据点,计算它与每个聚类中心的距离,将它分配到距离最近的聚类中心所在的簇中。

  3. 更新聚类中心:对于每个簇,计算它的所有数据点的平均值,将这个平均值作为新的聚类中心。

  4. 重复步骤 2 和步骤 3,直到聚类中心不再改变或达到最大迭代次数。

在图像处理中,我们可以将每个像素点的颜色值看作是一个三维向量,使用欧几里得距离计算两个颜色值之间的距离。对于每个像素点,我们将它分配到距离最近的聚类中心所在的簇中,然后将它的颜色值替换为所在簇的聚类中心的颜色值,如 A1(10, 140, 170) 以距离它最近的距离中心 A 的坐标表示即 A1 = A(50, 150, 200)。这样,我们就可以将图像中的颜色值进行量化,将相似的颜色值归为一类。

最后,我们可以根据聚类中心的颜色值,计算每个颜色值在图像中出现的次数,并按出现次数从大到小排序,取前几个颜色作为主要颜色。

<script>
  const img = new Image();
  img.src = "https://guqing-blog.oss-cn-hangzhou.aliyuncs.com/image.jpg";
  img.setAttribute("crossOrigin", "");

img.onload = function () { const canvas = document.createElement("canvas"); const ctx = canvas.getContext("2d"); canvas.width = img.width; canvas.height = img.height; ctx.drawImage(img, 0, 0);

&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; imageData = ctx.&lt;span class=&quot;hljs-title function_&quot;&gt;getImageData&lt;/span&gt;(&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;, &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;, canvas.&lt;span class=&quot;hljs-property&quot;&gt;width&lt;/span&gt;, canvas.&lt;span class=&quot;hljs-property&quot;&gt;height&lt;/span&gt;);
&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; data = imageData.&lt;span class=&quot;hljs-property&quot;&gt;data&lt;/span&gt;;

&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; k = &lt;span class=&quot;hljs-number&quot;&gt;3&lt;/span&gt;; &lt;span class=&quot;hljs-comment&quot;&gt;// 聚类数&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; centers = &lt;span class=&quot;hljs-title function_&quot;&gt;quantize&lt;/span&gt;(data, k);
&lt;span class=&quot;hljs-variable language_&quot;&gt;console&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;log&lt;/span&gt;(centers)

&lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; color &lt;span class=&quot;hljs-keyword&quot;&gt;of&lt;/span&gt; centers) {
  &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; div = &lt;span class=&quot;hljs-variable language_&quot;&gt;document&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;createElement&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;div&quot;&lt;/span&gt;);
  div.&lt;span class=&quot;hljs-property&quot;&gt;style&lt;/span&gt;.&lt;span class=&quot;hljs-property&quot;&gt;width&lt;/span&gt; = &lt;span class=&quot;hljs-string&quot;&gt;&quot;50px&quot;&lt;/span&gt;;
  div.&lt;span class=&quot;hljs-property&quot;&gt;style&lt;/span&gt;.&lt;span class=&quot;hljs-property&quot;&gt;height&lt;/span&gt; = &lt;span class=&quot;hljs-string&quot;&gt;&quot;50px&quot;&lt;/span&gt;;
  div.&lt;span class=&quot;hljs-property&quot;&gt;style&lt;/span&gt;.&lt;span class=&quot;hljs-property&quot;&gt;backgroundColor&lt;/span&gt; = color;
  &lt;span class=&quot;hljs-variable language_&quot;&gt;document&lt;/span&gt;.&lt;span class=&quot;hljs-property&quot;&gt;body&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;appendChild&lt;/span&gt;(div);
}

};

function quantize(data, k) { // 将颜色值转换为三维向量 const vectors = []; for (let i = 0; i &lt; data.length; i += 4) { vectors.push([data[i], data[i + 1], data[i + 2]]); }

&lt;span class=&quot;hljs-comment&quot;&gt;// 随机选择 K 个聚类中心&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; centers = [];
&lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; i = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; i &amp;lt; k; i++) {
  centers.&lt;span class=&quot;hljs-title function_&quot;&gt;push&lt;/span&gt;(vectors[&lt;span class=&quot;hljs-title class_&quot;&gt;Math&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;floor&lt;/span&gt;(&lt;span class=&quot;hljs-title class_&quot;&gt;Math&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;random&lt;/span&gt;() * vectors.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;)]);
}

&lt;span class=&quot;hljs-comment&quot;&gt;// 迭代更新聚类中心&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; iterations = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;;
&lt;span class=&quot;hljs-keyword&quot;&gt;while&lt;/span&gt; (iterations &amp;lt; &lt;span class=&quot;hljs-number&quot;&gt;100&lt;/span&gt;) {
  &lt;span class=&quot;hljs-comment&quot;&gt;// 分配数据点到最近的聚类中心所在的簇中&lt;/span&gt;
  &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; clusters = &lt;span class=&quot;hljs-keyword&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;hljs-title class_&quot;&gt;Array&lt;/span&gt;(k).&lt;span class=&quot;hljs-title function_&quot;&gt;fill&lt;/span&gt;().&lt;span class=&quot;hljs-title function_&quot;&gt;map&lt;/span&gt;(&lt;span class=&quot;hljs-function&quot;&gt;() =&amp;gt;&lt;/span&gt; []);
  &lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; i = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; i &amp;lt; vectors.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; i++) {
    &lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; minDist = &lt;span class=&quot;hljs-title class_&quot;&gt;Infinity&lt;/span&gt;;
    &lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; minIndex = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;;
    &lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; j = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; j &amp;lt; centers.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; j++) {
      &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; dist = &lt;span class=&quot;hljs-title function_&quot;&gt;distance&lt;/span&gt;(vectors[i], centers[j]);
      &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt; (dist &amp;lt; minDist) {
        minDist = dist;
        minIndex = j;
      }
    }
    clusters[minIndex].&lt;span class=&quot;hljs-title function_&quot;&gt;push&lt;/span&gt;(vectors[i]);
  }

  &lt;span class=&quot;hljs-comment&quot;&gt;// 更新聚类中心&lt;/span&gt;
  &lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; converged = &lt;span class=&quot;hljs-literal&quot;&gt;true&lt;/span&gt;;
  &lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; i = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; i &amp;lt; centers.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; i++) {
    &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; cluster = clusters[i];
    &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt; (cluster.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt; &amp;gt; &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;) {
      &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; newCenter = cluster
        .&lt;span class=&quot;hljs-title function_&quot;&gt;reduce&lt;/span&gt;(&lt;span class=&quot;hljs-function&quot;&gt;(&lt;span class=&quot;hljs-params&quot;&gt;acc, cur&lt;/span&gt;) =&amp;gt;&lt;/span&gt; [
          acc[&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;] + cur[&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;],
          acc[&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;] + cur[&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;],
          acc[&lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;] + cur[&lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;],
        ])
        .&lt;span class=&quot;hljs-title function_&quot;&gt;map&lt;/span&gt;(&lt;span class=&quot;hljs-function&quot;&gt;(&lt;span class=&quot;hljs-params&quot;&gt;val&lt;/span&gt;) =&amp;gt;&lt;/span&gt; val / cluster.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;);
      &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt; (!&lt;span class=&quot;hljs-title function_&quot;&gt;equal&lt;/span&gt;(centers[i], newCenter)) {
        centers[i] = newCenter;
        converged = &lt;span class=&quot;hljs-literal&quot;&gt;false&lt;/span&gt;;
      }
    }
  }

  &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt; (converged) {
    &lt;span class=&quot;hljs-keyword&quot;&gt;break&lt;/span&gt;;
  }

  iterations++;
}

&lt;span class=&quot;hljs-comment&quot;&gt;// 将每个像素点的颜色值替换为所在簇的聚类中心的颜色值&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; i = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; i &amp;lt; data.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; i += &lt;span class=&quot;hljs-number&quot;&gt;4&lt;/span&gt;) {
  &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; vector = [data[i], data[i + &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;], data[i + &lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;]];
  &lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; minDist = &lt;span class=&quot;hljs-title class_&quot;&gt;Infinity&lt;/span&gt;;
  &lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; minIndex = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;;
  &lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; j = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; j &amp;lt; centers.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; j++) {
    &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; dist = &lt;span class=&quot;hljs-title function_&quot;&gt;distance&lt;/span&gt;(vector, centers[j]);
    &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt; (dist &amp;lt; minDist) {
      minDist = dist;
      minIndex = j;
    }
  }
  &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; center = centers[minIndex];
  data[i] = center[&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;];
  data[i + &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;] = center[&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;];
  data[i + &lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;] = center[&lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;];
}

&lt;span class=&quot;hljs-comment&quot;&gt;// 计算每个颜色值在图像中出现的次数,并按出现次数从大到小排序&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; counts = {};
&lt;span class=&quot;hljs-keyword&quot;&gt;for&lt;/span&gt; (&lt;span class=&quot;hljs-keyword&quot;&gt;let&lt;/span&gt; i = &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;; i &amp;lt; data.&lt;span class=&quot;hljs-property&quot;&gt;length&lt;/span&gt;; i += &lt;span class=&quot;hljs-number&quot;&gt;4&lt;/span&gt;) {
  &lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; color = &lt;span class=&quot;hljs-string&quot;&gt;`rgb(&lt;span class=&quot;hljs-subst&quot;&gt;${data[i]}&lt;/span&gt;, &lt;span class=&quot;hljs-subst&quot;&gt;${data[i + &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;]}&lt;/span&gt;, &lt;span class=&quot;hljs-subst&quot;&gt;${data[i + &lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;]}&lt;/span&gt;)`&lt;/span&gt;;
  counts[color] = counts[color] ? counts[color] + &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt; : &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;;
}
&lt;span class=&quot;hljs-keyword&quot;&gt;const&lt;/span&gt; sortedColors = &lt;span class=&quot;hljs-title class_&quot;&gt;Object&lt;/span&gt;.&lt;span class=&quot;hljs-title function_&quot;&gt;keys&lt;/span&gt;(counts).&lt;span class=&quot;hljs-title function_&quot;&gt;sort&lt;/span&gt;(
  &lt;span class=&quot;hljs-function&quot;&gt;(&lt;span class=&quot;hljs-params&quot;&gt;a, b&lt;/span&gt;) =&amp;gt;&lt;/span&gt; counts[b] - counts[a]
);

&lt;span class=&quot;hljs-comment&quot;&gt;// 取前 k 个颜色作为主要颜色&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;return&lt;/span&gt; sortedColors.&lt;span class=&quot;hljs-title function_&quot;&gt;slice&lt;/span&gt;(&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;, k);

}

function distance(a, b) { return Math.sqrt( (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2 + (a[2] - b[2]) ** 2 ); }

functionequal(a, b) {returna[0] === b[0] &amp;&amp; a[1] === b[1] &amp;&amp; a[2] === b[2]; } &lt;/script&gt;


自动选取 K 值

在实际应用中,我们可能不知道应该选择多少个聚类中心,即 K 值。一种常用的方法是使用 Gap 统计量法,它的基本思想是比较聚类结果与随机数据集的聚类结果之间的差异,选择使差异最大的 K 值。

Gap 统计量法的实现过程如下:

  1. 对原始数据集进行 K-Means 聚类,得到聚类结果。

  2. 生成 B 个随机数据集,对每个随机数据集进行 K-Means 聚类,得到聚类结果。

  3. 计算聚类结果与随机数据集聚类结果之间的差异,使用 Gap 统计量表示。

  4. 选择使 Gap 统计量最大的 K 值。

下面是使用 JavaScript 实现 Gap 统计量法的示例代码:

function gap(data, maxK) {
  const gaps = [];
  for (let k = 1; k <= maxK; k++) {
    const quantized = quantize(data, k);
    const gap = logWk(quantized) - logWk(randomData(data.length));
    gaps.push(gap);
  }
  const maxGap = Math.max(...gaps);
  return gaps.findIndex((gap) => gap === maxGap) + 1;
}

function logWk(quantized) { const counts = {}; for (let i = 0; i &lt; quantized.length; i++) { counts[quantized[i]] = counts[quantized[i]] ? counts[quantized[i]] + 1 : 1; } const n = quantized.length; const k = Object.keys(counts).length; const wk = Object.values(counts).reduce((acc, cur) => acc + cur * Math.log(cur / n), 0); return Math.log(n) + wk / n; }

functionrandomData(n) {constdata =newUint8ClampedArray(n *4);for(leti =0; i &lt; data.length; i++) { data[i] =Math.floor(Math.random() *256); }returndata; }


使用:

const k = gap(data, 10)
// const k = 3; // 聚类数
const centers = quantize(data, k);

好吧,挺麻烦的,最终直接将封面图再作为背景图添加 backdrop-filter 来实现了 ?。

附录

Python 绘制图片 Scatter 3D:

import matplotlib.pyplot as plt
import numpy as np

from mpl_toolkits.mplot3d import Axes3D

def visualize_rgb(image_path): image = plt.imread(image_path) height, width, _ = image.shape

&lt;span class=&quot;hljs-comment&quot;&gt;# Reshape the image array to a 2D array of pixels&lt;/span&gt;
pixels = np.reshape(image, (height * width, &lt;span class=&quot;hljs-number&quot;&gt;3&lt;/span&gt;))

&lt;span class=&quot;hljs-comment&quot;&gt;# Extract RGB values&lt;/span&gt;
red = pixels[:, &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;]
green = pixels[:, &lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;]
blue = pixels[:, &lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt;]

&lt;span class=&quot;hljs-comment&quot;&gt;# Create 3D scatter plot&lt;/span&gt;
fig = plt.figure()
ax = fig.add_subplot(&lt;span class=&quot;hljs-number&quot;&gt;111&lt;/span&gt;, projection=&lt;span class=&quot;hljs-string&quot;&gt;'3d'&lt;/span&gt;)
ax.scatter(red, green, blue, c=pixels/&lt;span class=&quot;hljs-number&quot;&gt;255&lt;/span&gt;, alpha=&lt;span class=&quot;hljs-number&quot;&gt;0.3&lt;/span&gt;)

ax.set_xlabel(&lt;span class=&quot;hljs-string&quot;&gt;'Red'&lt;/span&gt;)
ax.set_ylabel(&lt;span class=&quot;hljs-string&quot;&gt;'Green'&lt;/span&gt;)
ax.set_zlabel(&lt;span class=&quot;hljs-string&quot;&gt;'Blue'&lt;/span&gt;)
ax.set_title(&lt;span class=&quot;hljs-string&quot;&gt;'RGB 3D Scatter Plot'&lt;/span&gt;)

plt.show()

调用函数并传入图像路径`

visualize_rgb('image.jpg') `


赞(1)
未经允许不得转载:工具盒子 » 使用 JavaScript 对图像进行量化并提取主要颜色