Convert RAW File (images) to PNG

조회 수: 38 (최근 30일)
rezvan raz
rezvan raz 2022년 8월 11일
댓글: Cris LaPierre 2022년 8월 12일
Hi.
I have a MRI dataset file contain raw and mhd files.
i read this images with the below code :
id = fopen('filename.raw');
img = fread(id,'short');
imgsize = size(img);
rows = 512;
clos =512;
nums = imgsize(1)/rows/clos;
img = reshape(img,[rows,clos,nums]);
single_image = reshape(img(:,:,3),[rows,clos]);
single_show = uint8(single_image);
imshow(single_show)
But in the following I want to convert these images into PNG format.
I would be grateful if you could help me with this image conversion section.
  댓글 수: 3
rezvan raz
rezvan raz 2022년 8월 11일
thanks but both of them are my questions without any answers :))
Cris LaPierre
Cris LaPierre 2022년 8월 12일
I know, but they are essentially the same question, so anyone answering this one could probably help answer the other one.

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

답변 (1개)

DGM
DGM 2022년 8월 12일
편집: DGM 2022년 8월 12일
A .raw file can be a number of different things. I'm not familiar with .mhd files, so I can't comment on that. It's not clear to us what you have or whether the code you show is working as intended.
If the above code isn't correctly working, you'll have to describe the issue and provide an example file.
If the code is working and single_show is correctly scaled for its class and displaying as expected, then I don't see why you can't just write the image using imwrite(). If you need to write all pages as individual images, just write them in a loop.
fid = fopen('filename.raw');
framestack = fread(id,'short');
fclose(fid);
imgsize = size(framestack);
rows = 512;
clos = 512;
fextension = '.png';
numframes = imgsize(1)/rows/clos;
framestack = reshape(framestack,[rows,clos,nums]);
% loop through frames/pages
for f = 1:numframes
% casting as uint8 may not be necessary or appropriate
% i can't know what your data range/class are
thisframe = uint8(framestack(:,:,f));
% write the frame
new_filename = sprintf('myimage_frame_%03d%s',f,fextension);
imwrite(thisframe,new_filename);
end
If not that, you'll have to clarify.

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by