How to save a figures "color"??
Mostra commenti meno recenti
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 Commento
Nisreen Sulayman
il 25 Giu 2015
Risposte (1)
David
il 25 Giu 2015
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 Commenti
David
il 25 Giu 2015
I just realized I might have misunderstood your question: is it the black/white image you want to have saved?
Nisreen Sulayman
il 25 Giu 2015
Image Analyst
il 25 Giu 2015
Looks like it was somehow quantized before you saved it. Just don't do that.
Categorie
Scopri di più su Image Arithmetic in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
