Convert RAW and MHD File (images) to JPG

11 visualizzazioni (ultimi 30 giorni)
rezvan raz
rezvan raz il 11 Ago 2022
Commentato: Cris LaPierre il 11 Ago 2022
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 JPG format.
I would be grateful if you could help me with this image conversion section.

Risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by