Why does my image does not conert to grayscale?
조회 수: 34 (최근 30일)
이전 댓글 표시
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;
댓글 수: 0
채택된 답변
Image Analyst
2021년 8월 31일
Use imshow() because imagesc() applies some funky colormap by default, and that is usually not what you want.
댓글 수: 3
Image Analyst
2021년 8월 31일
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
2021년 9월 5일
Andrew, if this solved it, can you click the "Accept this answer" link? Thanks in advance.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!