What is the preferred way of doing the conversion using PIL/Numpy/SciPy today?
|
|
Since 2010 when the linked question was asked the corresponding code moved from scipy to a separate toolkit: http://scikit-image.org/ So here's the code I was actually looking for:
It should also be noted that due to Lab nature srgb->lab conversion depends on an additional parameter: whitepoint, eg: This nice FAQ explains it this way:
You can tell which whitepoint you're dealing with by converting RGB The numbers after 'D' correspond to (internally) used color temperature of white point: D50 = 5003 K (bluish), D65 = 6504 K (yellowish) I'm grateful to Alex and Roman for their answers because they pointed me into the right direction. |
||||
|
|
|
Edit: Sample pyCMS code:
Edit: Pillow, the PIL fork, seems to have pyCMS built in. You might use pyCMS (http://www.cazabon.com/pyCMS/) which works with PIL images. If speed is not a factor, use python-colormath (http://code.google.com/p/python-colormath/). |
|||||||||||
|
|
I've found this code in adobe cookbook and adapted for python. It doesn't require any third-party modules or components:
I hope this is will be useful for you |
|||||||
|