Hi everyone can help me? I have image (PET) in format dicom 256x256 dimension. then the min pixel is 0 and the max pixel is 32657. Actually, what is the no meaning? 1) is it means the dose? 2) or intensity of the beam or radiation? 3) and what is the unit of that pixel no?

 採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 17 日

0 投票

You need to access one of the dicom headers to find out what the numbers represent. See http://dicom.nema.org/medical/Dicom/2016b/output/chtml/part03/sect_C.8.9.html

2 件のコメント

mohd akmal masud
mohd akmal masud 2017 年 11 月 17 日
Thak you so much Walter Roberson.
mohd akmal masud
mohd akmal masud 2019 年 3 月 24 日
Sorry all, another question i have but i wrote at this space. please help me
Dear all,
this is my code to view CT image by slice
P = zeros(256, 256, 72);
for K = 1 : 72
petname = sprintf('I4%03d.dcm', K);
P(:,:,K) = dicomread(petname);
end
imshow3D(P)
then, this is my code for view SPECT image by slice,
Noted: all my 42 slice SPECT image stored in one file.
[spect map]=dicomread('128x128');
info = dicominfo('128x128');
gp=info.SliceThickness;
spect=(squeeze(spect));%smooth3
aa=size(spect);aa=aa(3);
imshow3D(spect);
Anybody can help me to fuse both SPECT and CT images for all slice?

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDICOM Format についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by