This was very helpful: http://en.wikipedia.org/wiki/HSL_and_HS ... HSL_or_HSV

Here is my Python Code:
Code: Select all
import Image
img = Image.open("rainbow.png")
pixel = img.load()
width,height = img.size
def sortkey(x):
r,g,b = x[0]/255.0, x[1]/255.0, x[2]/255.0
cmax = max ([r,g,b])
cmin = min ([r,g,b])
if cmax==r:
return (g-b)/(cmax-cmin)
elif cmax==g:
return 2.0+(b-r)/(cmax-cmin)
else: # cmax==b
return 4.0+(r-g)/(cmax-cmin)
for y in range(height):
pixellist = [pixel[x,y] for x in range(width)]
pixellist.sort(key=sortkey)
for p,i in map(None,pixellist,range(width)):
pixel[i,y] = p
img.show()