How to eliminate colormap?

조회 수: 3 (최근 30일)
John Doe
John Doe 2020년 6월 3일
편집: John Doe 2020년 6월 3일
a = imread('cameraman.tif') ;
image(a)
The commands are producing the image in a colormap, not in gray tone (original color). I do not want the colormap?
How to fix this without using imshow?
Thanks in advance!

채택된 답변

Tommy
Tommy 2020년 6월 3일
When you supply a 2D array to image(), the values within that array are mapped to a colormap. The colormap is needed to convert scalar values to RGB triplets. imread() returns a 2D array for grayscale images, but you can supply the corresponding 3D array (where R=G=B) to image() if you want:
image(repmat(a,1,1,3))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Red에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by