Change the black of grayscale image into color

5 次查看(过去 30 天)
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?

采纳的回答

Image Analyst
Image Analyst 2020-12-29
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.

更多回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by