Effacer les filtres
Effacer les filtres

Why does my image does not conert to grayscale?

19 vues (au cours des 30 derniers jours)
Andrew Killian
Andrew Killian le 31 Août 2021
Commenté : Image Analyst le 5 Sep 2021
I need to convert an image that we were given to grayscale.
I wrote the code below. When I highlight the whole 'imagesc' line and 'evaluate selction' the image pops up but in color.
logo = imread('..._logo.jpg');
figure;
imagesc(logo);
colormap gray;

Réponse acceptée

Image Analyst
Image Analyst le 31 Août 2021
Use imshow() because imagesc() applies some funky colormap by default, and that is usually not what you want.
  3 commentaires
Image Analyst
Image Analyst le 31 Août 2021
No, you don't need that last line. The default for gray scale images is to not use a colormap and show everything in it's original, native gray color.
Image Analyst
Image Analyst le 5 Sep 2021
Andrew, if this solved it, can you click the "Accept this answer" link? Thanks in advance.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Red dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by