图像中独特的CIELab颜色数

时间:2019-10-18 13:56:45

标签: python matlab colors cielab

我有一个用CIELab颜色空间表示的图像。如何返回图像包含的独特CIELab颜色的数量?

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以使用unique(...,'rows')

n = size(unique(reshape(img, [], 3)),1);