Convert RAW and MHD File (images) to JPG

12 Ansichten (letzte 30 Tage)
rezvan raz
rezvan raz am 11 Aug. 2022
Kommentiert: Cris LaPierre am 11 Aug. 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.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by