Problem on gray scale image.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi. i used gray = rgb2gray(I) at command window but why can't i get a grayscale image? thank you!

0 commentaires
Réponses (2)
Walter Roberson
le 19 Sep 2012
grayscaleimage = rgb2gray(I);
image(grayscaleimage);
colormap(gray);
Please note that "gray" is a MATLAB function for constructing grayscale colormaps. Writing to a variable named "gray" interferes with using the function "gray".
0 commentaires
Esther
le 20 Sep 2012
6 commentaires
Image Analyst
le 20 Sep 2012
Modifié(e) : Image Analyst
le 20 Sep 2012
So you DID get a gray scale image. Why did you say you did not?
Voir également
Catégories
En savoir plus sur White 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!