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

Answers (2)

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.

2 Comments

How to convert colour image into black and white using matlab functions? (inverse image)??

Sign in to comment.

bwImg=im2bw(image_name,thershold value);
above function you can convert colour image to black and white image

Categories

Find more on Convert Image Type in Help Center and File Exchange

Asked:

on 21 Mar 2011

Answered:

on 27 Mar 2020

Community Treasure Hunt

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

Start Hunting!