Clear Filters
Clear Filters

Change the black of grayscale image into color

8 views (last 30 days)
Hallo I gernerated with "bwperim" borders around my particles and switched them to black instead of white with a black background.
I would like to visualize the difference between multiple images by diffrent colors. Right now all the images are black and white.
how can I change the black sourrounding into a diffrent color for each picture?

Accepted Answer

Image Analyst
Image Analyst on 29 Dec 2020
Threshold or somehow segment your images to get a mask of the "black" parts, then use
rgbImage = imoverlay(grayImage, mask, yourColor);
where yourColor is a 3 element array where each number of the fraction from black to bright for red, green, and blue, like [0.3, 0.6, 0.9] or whatever.
  2 Comments
Image Analyst
Image Analyst on 29 Dec 2020
Then can you please "Accept this answer"? Thanks in advance.

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 29 Dec 2020
mask = ~YourLogicalMap;
MapR = mask .* ColorForRed;
MapG = mask .* ColorForGreen;
MapB = mask .* ColorForBlue;
MapRGB = cat(3, MapR, MapG, MapB);

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!