converts L*a*b* image to an RGB image
RGB = RGB2LAB(LAB);
3D matrix of type double
This function converts an L*a*b* image to RGB.
global IPD_PATH; RGB = ReadImage(IPD_PATH + 'demos\teaset.png'); RGBD = double(RGB) / 255; LAB = RGB2LAB(RGBD); RGB_New = LAB2RGB(LAB); figure(); ShowColorImage(uint8(255 * RGB_New), 'Result of LAB -> RGB');