How to extract x,y,z coordinates from 3D Dicom Images?

9 次查看(过去 30 天)
How to extract x,y,z coordinates from 3D Dicom Images? can any one share me idea's ?
  5 个评论

请先登录,再进行评论。

回答(2 个)

Walter Roberson
Walter Roberson 2018-11-14
and be sure to follow the references right through to the stackoverflow page as the discussion there has key information about the handling of CT images, which are more complicated to get the position information from .

drummer
drummer 2020-1-29
You can use the function imref3d
After knowing the world coordinates of your 3-D image, you can you the dicom tag that refers to your pixel dimensions.
info = dicominfo('yourImage.dcm');
vxlDimension = info.PixelSpacing;
vxlThickness = info.SliceThickness;
info.PixelSpacing returns x and y dimensions, so you can you vxlDimension(1) or vxlDimension(2) if they are isotropic voxels.
Cheers

类别

Help CenterFile Exchange 中查找有关 DICOM Format 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by