MATLAB: How to recover to original image after i changed to gray level

colormapgrayimage processingImage Processing Toolbox

Img=imread('image1.jpg');
Gray=rgb2gray(img);
How convert Gray to original color now????

Best Answer

Very simple in fact trivial:
Gray = Img;
Related Question