MATLAB: Gray to hot

convertgrayhotMATLAB

Hi, do not know how convert the image from color gray to hot?
RGB = imre ad('peppers.png');
HSV = rgb2hsv(RGB);
imshow(RGB);
imshow(HSV);
this is for RGB

Best Answer

colormap(hot)
?
Related Question