Image fusing one image SPECT with 72 images CT

조회 수: 3 (최근 30일)
mohd akmal masud
mohd akmal masud 2020년 5월 27일
Hi all, please help me.
i have one image SPECT (dicom data) and 72 image CT(dicom data). I want to fuse it. Below is my trying coding for fuse. But still failed. any one can help me how to fuse one image SPECT with 72 images CT?
P = zeros(256, 256, 72);
for K = 1 : 72
ctname = sprintf('I4%03d.dcm', K);
P(:,:,K) = dicomread(ctname);
end
% imshow3D(P)
[spect map]=dicomread('128x128');
info = dicominfo('128x128');
gp=info.SliceThickness;
spect=(squeeze(spect));%smooth3
aa=size(spect);aa=aa(3);
imshow3D(spect);
% for K = 1 : 72
K = 1
for K1 = 1 : 27
C(:,:,:,K1) = imfuse(P(:,:,K),spect(:,:,K1));
end
imshow3D(C(:,:,:,K))
Here i attached the result picture

답변 (0개)

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by