Effacer les filtres
Effacer les filtres

Change the black of grayscale image into color

8 vues (au cours des 30 derniers jours)
Markus Kokot
Markus Kokot le 29 Déc 2020
Commenté : Image Analyst le 29 Déc 2020
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?

Réponse acceptée

Image Analyst
Image Analyst le 29 Déc 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 commentaires
Markus Kokot
Markus Kokot le 29 Déc 2020
Thank you very much :) it works!
Image Analyst
Image Analyst le 29 Déc 2020
Then can you please "Accept this answer"? Thanks in advance.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 29 Déc 2020
mask = ~YourLogicalMap;
MapR = mask .* ColorForRed;
MapG = mask .* ColorForGreen;
MapB = mask .* ColorForBlue;
MapRGB = cat(3, MapR, MapG, MapB);

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by