I have 3300 128x128 array(images), I would like to count the unique colours in these image.
np.unique(task, return_counts = True)
could give me the unique colour and the counts for one single image.
But in order to get the representation of all these 3300 images. I would like to get a unique result of all these images at the counts as well.
It's easy to get the unique colour, but the counts is difficult to get.
Someone could help?