Effacer les filtres
Effacer les filtres

Putting color on binary image

29 vues (au cours des 30 derniers jours)
Ravin Rayeok
Ravin Rayeok le 28 Fév 2020
Commenté : Ravin Rayeok le 28 Fév 2020
Hello!
Need a hand here, I want to color my binary image resulting from thresholding of rgb image.
How to do it? let's say, black to blue and white to green.

Réponse acceptée

Guillaume
Guillaume le 28 Fév 2020
Modifié(e) : Guillaume le 28 Fév 2020
Here's an easy way, assuming that your start image is indeed a binary image (i.e a 2D matrix with values 0 or 1):
%binaryimage: 2D matrix of 0s and 1s
map = [0 0 1; ...replacement colour for black as a RGB triplet, fully saturated blue in this case
0 1 0]; %replacement colour for white as a RGB triplet, fully saturated green in this case
colouredimage = map(binaryimage + 1 + cat(3, 0, 2, 4));
imshow(colouredimage); %to check
edit: Actually an even easier way, and certainly easier to understand, is with
map = [0 0 1; ...replacement colour for black as a RGB triplet, fully saturated blue in this case
0 1 0]; %replacement colour for white as a RGB triplet, fully saturated green in this case
colouredimage = label2rgb(binaryimage + 1, map);
assuming you have the image processing toolbox.
  1 commentaire
Ravin Rayeok
Ravin Rayeok le 28 Fév 2020
Ah i see, thanks a lot!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Modify Image Colors 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