Clear Filters
Clear Filters

is it possible to convert binary image to rgb image or i want to replace all pixel values 0 by some red or green color in new image?

1 view (last 30 days)
is it possible to convert binary image to rgb image or i want to replace all pixel values 0 by some red or green color in new image using matlab code?

Accepted Answer

Christoph
Christoph on 20 Jul 2011
How about
image=repmat(double(image),[1,1,3]);
this way you have a matrix with 3 dimensions. image(:,:,1)is the red channel, image(:,:,2) the green one and image(:,:,3) is blue. Now you could set the channels according to your needs.
Hope this helps
  4 Comments
Jan
Jan on 20 Jul 2011
@Somasekar: Please post the complete error message. It seems like all important information is missing.
Christoph
Christoph on 20 Jul 2011
@Somasekar: Also it would be nice if you wouldn't post multiple questions with the same or nearly the same content. Thanks

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!