필터 지우기
필터 지우기

How can I write a raw double precision image to disk?

조회 수: 2 (최근 30일)
Michael
Michael 2011년 6월 28일
I have a double precision image with small values and a very small dynamic range. I want to write this image to disk "as is": if I change it to the interval [0 255] the image is quantized and all the information is lost.
How can I write the image just the way it is stored in memory? By the way, using MATLAB's save is not a real option, I want to write a raw image.

채택된 답변

Bjorn Gustavsson
Bjorn Gustavsson 2011년 6월 28일
If you want to have true double precision image I think that the fits (Flexible Image Transport System) file format is the way to go. Then you can use the specialized ds9 image viewer, and some other image viewers know how to read fits images. There is a matlab interface to the C-fitsio tools:
that is supposedly good. Matlab unfortunately does not support writing fits-files. But it is not too difficult to roll your own, if you stick to a minimal/simple version of images to write. I made one wfits.m that you can find:
HTH,

추가 답변 (2개)

Ali Can ARIK
Ali Can ARIK 2011년 6월 28일
You can write the image on the disk as if writing a double precision array. However the image cannot be viewed by any image display tool, it can only be read again in Matlab.
filename = 'image.dat';
x = magic(5);
fid = fopen(filename,'w');
fwrite(fid,x);
fclose(fid);
% Following reads the file back into Matlab.
fid = fopen(filename,'r');
x_read = fread(fid);
fclose(fid);
Hope this is what you're looking for.
  댓글 수: 2
David Young
David Young 2011년 6월 28일
If the intention is to read it again in MATLAB, why not just use save and load?
Ali Can ARIK
Ali Can ARIK 2011년 6월 28일
Good point. It makes it possible to read it using another programming language though and this is why I thought it would be useful.
Bjorn's solution above is actually what Michael needs imo.

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


Peter Manley-Cooke
Peter Manley-Cooke 2011년 6월 28일
Could you not expand the dynamic range before quantization and shrink it again when the image is re-loaded?

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by