How to save a figures "color"??

조회 수: 7 (최근 30일)
Nisreen Sulayman
Nisreen Sulayman 2015년 6월 25일
댓글: Image Analyst 2015년 6월 25일
I have opened 180 figure during some operation.
After closing all the figures, I opened a new one and tried to save it.... But it didn't save it in a correct way.
attached image the a sample.
How to restore defult setting for MatLab??
  댓글 수: 1
Nisreen Sulayman
Nisreen Sulayman 2015년 6월 25일
This is the image to be saved

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

답변 (1개)

David
David 2015년 6월 25일
From an old similar question (see http://www.mathworks.com/matlabcentral/newsreader/view_thread/83267), getframe is perhaps the most simple way to save a colorbased image by e.g.:
imID=imread('image.tif');
imagesc(imID);
axis image;
colormap('jet');
set(gca,'CLim',[0 255]); %Important!
im=getframe;
image(im.cdata);
imwrite(im.cdata,'nice_image.tif');
Note that you use the command (see "%Important" above)
set(gca,'CLim',[lower upper]);
to set your color limits (lower and upper respectively).
  댓글 수: 3
Nisreen Sulayman
Nisreen Sulayman 2015년 6월 25일
image in the comment is the image to be saved ... I used imwrite to save the image ... but the result was as in the question
Image Analyst
Image Analyst 2015년 6월 25일
Looks like it was somehow quantized before you saved it. Just don't do that.

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

Community Treasure Hunt

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

Start Hunting!

Translated by