How can I get pixel spacing value from DICOM images?

조회 수: 26 (최근 30일)
Akib Ahmed
Akib Ahmed 2017년 11월 21일
답변: mohd akmal masud 2018년 3월 15일
An old code (written in 2010) of DICOM image viewer is in my hand and it achieves the image's pixel spacing value by the following code snippet (A bit edited from the original):
d = sortDirectory(folder); %Sort in ascending order of instance number
metadata = dicominfo(d(1).name);
[group1 element1] = dicomlookup('PixelSpacing');
resolution = metadata.(dicomlookup(group1, element1));
Turns out, DICOM metadata no longer carries the PixelSpacing attribute. So I cannot get it by calling "dicominfo" function. How can I get this info now?
Thanks in advance.

답변 (1개)

mohd akmal masud
mohd akmal masud 2018년 3월 15일
let say your image is "image.dcm"
info=dicominfo('image.dcm');
spacing=info.PixelSpacing;
spacing=

카테고리

Help CenterFile Exchange에서 Read and Write Image Data from Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by