フィルターのクリア

why does whiteness show up ? !

1 回表示 (過去 30 日間)
Mayssa
Mayssa 2015 年 8 月 21 日
コメント済み: Star Strider 2015 年 8 月 22 日
I saved an image in my file using "saveas" and I have used those instructions
DirectoryPath =('C:\Users\Mayssa\Desktop\pfe\Matlab\interface');
whereToStore=fullfile(DirectoryPath,a);
saveas(gcf, whereToStore);
But when I try to read it (with imread) it shows up on a a white background, how can I get rid of it ? :(

回答 (3 件)

Star Strider
Star Strider 2015 年 8 月 21 日
From the saveas documentation:
  • If you do not specify an extension, then saveas saves the figure to a FIG-file.
Instead of imread, see if openfig works.
  6 件のコメント
Mayssa
Mayssa 2015 年 8 月 22 日
編集済み: Mayssa 2015 年 8 月 22 日
@Star Strider, It does work for me too, but in my code I am plotting over an image texture than saving the whole in another image.
Star Strider
Star Strider 2015 年 8 月 22 日
Try this:
figure(1)
plot(-10:10, exp(-([-10:10]/5).^2))
saveas(gcf, '#TestSAVEAS_01.png');
figure(2)
plot(-10:10, 1-exp(-([-10:10]/5).^2))
saveas(gcf, '#TestSAVEAS_02.png');
A = imread('#TestSAVEAS_01.png');
B = imread('#TestSAVEAS_02.png');
figure(2)
image(uint8((double(A)/2 + double(B)/2)))
hold on
hold off
title('Retrieved & Combined Images')
delete('#TestSAVEAS_01.png')
delete('#TestSAVEAS_02.png')

サインインしてコメントする。


Walter Roberson
Walter Roberson 2015 年 8 月 21 日

Image Analyst
Image Analyst 2015 年 8 月 21 日

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by