Azzera filtri
Azzera filtri

Pixel to mm conversion

9 visualizzazioni (ultimi 30 giorni)
Poorya
Poorya il 5 Ott 2023
Hi everyone.
I have a dicom image(CT image). the dimention of the file is(512*512*300). I want to change the scale of it to mm. I know the the pixel spacing in x and y are (0.78*0.78), and in z is (2.5 mm). Can you help me with that?

Risposte (1)

Walter Roberson
Walter Roberson il 5 Ott 2023
If what you want out is a cuboid with pixels that are 1mm x 1mm x 1mm then
Use imresize3 with the new size 512*0.78 by 512*0.78 by 300*2.5
  2 Commenti
Poorya
Poorya il 5 Ott 2023
thank you for your suggestion. I tried imresize, but I did not get the good result. when I used it, it change the dimention(400*400*750) not the value.
X = imresize3(I1,[512*0.78 512*0.78 300*2.5]);
is it right?
Walter Roberson
Walter Roberson il 6 Ott 2023
Yes, that should be fine. Each voxel in X will now be 1mm by 1mm by 1mm
512 pixels * 0.78 mm per pixel = 400 mm, and you are getting out an array that is 400 (new) pixels, so that would be 400 mm / 400 pixels = 1 mm per pixel.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by