how can I get that the thikness of one slice of a CT image is measured at the milimeter level?
显示 更早的评论
hi everyone I got a code for DICOM viewer in this link: http://www.mathworks.com/matlabcentral/fileexchange/4172-dicom-viewer
The thickness of each slice is important for me. in this code I can see this but I don't know Is this measured at the millimeter level? my question is this: how can I get that the thickness of one slice of a CT image is measured at the millimeter level? if it is not measured in millimeter how can I transfer it to millimeter? I appreciate your helps and supports in advanced.
采纳的回答
更多回答(1 个)
Henric Rydén
2015-6-18
Read tags only, not the image:
info = dicominfo('filename.dcm');
Get slice thickness in mm:
info.SliceThickness
2 个评论
jack nn
2015-6-18
Walter Roberson
2015-6-18
Right, SliceThickness is the tag name associated with (0018,0050)
类别
在 帮助中心 和 File Exchange 中查找有关 DICOM Format 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!