I want to map each numpy array to a color to create an image.
For example: if I have the numpy array:
[ [0 0 1 3]
[0 2 4 5]
[1 2 3 6] ]
I want to make an image by mapping all values below 3 to blue like
[ [blue blue sky-blue green]
[blue sky-blue green green]
[blue sky-blue green green]
