Problem on gray scale image.
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi. i used gray = rgb2gray(I) at command window but why can't i get a grayscale image? thank you!

0 Commenti
Risposte (2)
Walter Roberson
il 19 Set 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 Commenti
Esther
il 20 Set 2012
6 Commenti
Image Analyst
il 20 Set 2012
Modificato: Image Analyst
il 20 Set 2012
So you DID get a gray scale image. Why did you say you did not?
Vedere anche
Categorie
Scopri di più su White in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
