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

11 ビュー (過去 30 日間)
voxey
voxey 2018 年 11 月 12 日
回答済み: drummer 2020 年 1 月 29 日
How to extract x,y,z coordinates from 3D Dicom Images? can any one share me idea's ?
  5 件のコメント
Walter Roberson
Walter Roberson 2018 年 11 月 13 日
https://www.mathworks.com/matlabcentral/answers/428899-how-to-create-x-y-z-input-of-delaunaytriangulation-x-y-z-from-jpeg-dicom-images is our existing discussion of this . we cannot answer the question until you can tell us which kind of medical image is being used
voxey
voxey 2018 年 11 月 14 日
DICOM Image MRI ,CT Images Walter Roberson?

サインインしてコメントする。

回答 (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 Center および File ExchangeDICOM Format についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by