tags:

views:

25

answers:

1

Hi all! I don't understand how to convert sRGB to CIELab and backward. Help me please. it's desirable in с++ code

A: 

Convert from sRGB to RGB by applying inverse gamma, convert RGB to XYZ using 3x3 matrix, convert XYZ to Lab using standard formula and D6500 white point

References:

The rest... you can do on your own :-)

Artyom