Image save with colormap

조회 수: 56 (최근 30일)
YongHyun
YongHyun 2016년 5월 10일
댓글: Image Analyst 2016년 5월 11일
Dear all, I have a image data, and I made gray image to color image with jet colormap. However, the imshow function does not support the full scale or full size saving. How can I solve this problem?
  댓글 수: 1
Guillaume
Guillaume 2016년 5월 10일
imshow has nothing to do with saving images. I don't understand the question.
Also see this, this, and many more on the jet (rainbow) colour map.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2016년 5월 10일
편집: Image Analyst 2016년 5월 10일
When you said "I made gray image to color image with jet colormap" it's not clear if you used
rgbImage = ind2rgb(grayImage, jet(256));
imshow(rgbImage);
Or if you did
imshow(grayImage, []);
colormap(jet(256));
The first snippet creates a new full color RGB image, while the second snippet just displays the gray scale image with a pseudocolor lookup table. Which did you do?
Then you say " imshow function does not support the full scale". Not sure if you mean the size scale or the intensity scale. Anyway, imshow() supports both. The image will be scaled to fit so that the whole image will fit into whatever size the axes control is.
Then you say "the imshow function does not support the full ... size saving". You don't use imshow() to save the image, you use imwrite(), and imwrite() will save the full sized image.
If you want to display the full size image, you'll need to use a imscrollpanel. See attached demo from the Mathworks.
  댓글 수: 2
YongHyun
YongHyun 2016년 5월 11일
I mean the image size, because imshow and save does not support full size image saving. Also, the image data have over the 8 bit. e.g)
imshow(image,[300 330],'colormap',jet)
after that, I want to save the showed image as full size. Thanks in advance.
Image Analyst
Image Analyst 2016년 5월 11일
Again, imshow() does not save - it displays, and it displays the full sized image in the axes. The save() function, just like the imwrite() function, will also save the full sized image to a .mat file, if that's what you do. The saved image will remain the same class, like uint8.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Amy Haskins
Amy Haskins 2016년 5월 10일
You're using your gray image like an indexed image and applying a colormap. The function ind2rgb will let you convert your gray image to RGB with a specified colormap and give you the full res image you're looking for.
If by save you mean save to disk, then you can use imwrite with the syntax imwrite(A,map,filename) to save the gray image and colormap, or you can save the RGB image with the imwite(A,filename) syntax after calling ind2rgb.

Walter Roberson
Walter Roberson 2016년 5월 10일
Get freezeColors from the File Exchange. Display your image. freeze the colors. get the CData property from the image object. imwrite() it to a file.

카테고리

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