Effacer les filtres
Effacer les filtres

Why the image color bar doesn't contain certain color (Red, in particular)

2 vues (au cours des 30 derniers jours)
I used the following code in order to explore RGB images
X = imread ('parrot.jpg');
image(X);
colorbar
The output
Why doesn't the color bar contain red color even when the image does?

Réponse acceptée

Image Analyst
Image Analyst le 22 Août 2020
If you want to see the 3-D color gamut, you can use colorcloud
colorcloud(rgbImage);
  1 commentaire
Sachin Motwani
Sachin Motwani le 22 Août 2020
Modifié(e) : Sachin Motwani le 22 Août 2020
Thanks. This is what I wanted to see.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 21 Août 2020
Modifié(e) : Walter Roberson le 22 Août 2020
image() never changes the active colormap. (imshow() on the other hand changes the colormap for 2d arrays but not for rgb arrays.) You were displaying an rgb image so it had no need for a colormap.
colorbar never analyzes the contents of the display. colorbar only ever puts up a copy of the current colormap and associated numeric scale. In this case the default parula map was displayed.
Image Analyst has a better analysis tool but I cannot find it at the moment.
  2 commentaires
KSSV
KSSV le 21 Août 2020
Modifié(e) : KSSV le 21 Août 2020
@Walter Yes you are right..deleted my (wrong) answer.
Sachin Motwani
Sachin Motwani le 22 Août 2020
Thanks for the explaination of my mistake.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Red dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by