how to convert black and white image into a colour image using matlab functions?

65 views (last 30 days)
how to convert black and white image into a colour image using matlab functions?

Answers (2)

Walter Roberson
Walter Roberson on 21 Mar 2011
ColorImage = repmat(BWImage,[1,1,3]);
The result will be an RGB image whose colors are the same as the black and white image. If you want colors other than shades of grays, then you would need to alter the image.
Or perhaps the answer you are looking for is
colormap hot
or
colormap copper
or any of the other ready-made colormaps.

PROSANJEET SARKAR
PROSANJEET SARKAR on 27 Mar 2020
bwImg=im2bw(image_name,thershold value);
above function you can convert colour image to black and white image

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!