我正在使用来自 scipy 的 kmeans2 算法对图像中的像素颜色进行聚类,以获得图像中的最高平均颜色。
我对这个参数的含义感到困惑:
iter : int
Number of iterations of the k-means algrithm to run. Note that this differs in meaning from the iters parameter to the kmeans function.
如果我希望 kmeans 算法一直运行到集群不变,我会将iter
值设置为高吗?有没有办法找到最佳 iter
价值?