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?

답변 (1개)

Walter Roberson
Walter Roberson 2023년 10월 5일

0 개 추천

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

Poorya
Poorya 2023년 10월 5일
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 2023년 10월 6일
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.

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

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

질문:

2023년 10월 5일

댓글:

2023년 10월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by