Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Images saved in png are completely different with what I get from using images

1 回表示 (過去 30 日間)
Golnoush Asaeikheybari
Golnoush Asaeikheybari 2019 年 5 月 17 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have two matrixes which the pixel value of one of them is 0, 1, ,2, 3. When I save them with the code below I get a copmletely black image while I can see the image as below when I use imagesc in matlab to see the image.
destdirectory = '/Users/good';
%mkdir(destdirectory); %create the directory
thisimage = 'first.png';
fulldestination = fullfile(destdirectory, thisimage); %name file relative to that directory
imwrite(IMG, fulldestination);
for another image, the pixel values include NaN, 0, 3, 2.12334 and I saw the image that is saved is completely differnt with what I see when I use imagesc. The first image below is what I see by imagesc and the second one is what I see after I save it. I am intersted to save it exactly as I see in imagesc.
Thank you for your help.
  1 件のコメント
Stephen23
Stephen23 2019 年 5 月 21 日
編集済み: Stephen23 2019 年 5 月 21 日
"I have two matrixes which the pixel value ..."
Please upload the two matrices in one mat file, by clicking the paperclip button.

回答 (1 件)

Prathamesh Degwekar
Prathamesh Degwekar 2019 年 5 月 21 日
Hi,
When you write an image in the "png" format, the data in it changes for the sake of compression, etc. Thus the data in it is different.
Imagesc looks at the data and displays it as a colourmap, as explained in the link below.
Thus the data stored in the two files/matrices would be different due to the changes that the "png" file format requires.
If you want to save it exactly as you see it, try using bitmap ("bmp") file format or "raw" format to store your image.
Hope this helps.
Cheers.
  1 件のコメント
Stephen23
Stephen23 2019 年 5 月 21 日
編集済み: Stephen23 2019 年 5 月 21 日
"When you write an image in the "png" format, the data in it changes for the sake of compression, etc. Thus the data in it is different."
PNG is a lossless compression format.
Pre-processing of the data can occur, before it is saved.

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by