How to write N number of DICOM image[2D] to single DICOM file [3D] ?

5 views (last 30 days)
How to write N number of DICOM image[2D] to single DICOM file [3D] ? can any give a idea's ?

Accepted Answer

voxey
voxey on 15 Nov 2018
Edited: voxey on 15 Nov 2018
Input dicom 2d Images:
vskdcm(:,:,:,k)=imageArray;
nvskdcm=vskdcm(:,:,:,1:N);
here imageArray ----Input Dicom 2d image
nvskdcm------3D or 4D variable
N---------------N number of DICOM 2d Slides

More Answers (1)

KSSV
KSSV on 14 Nov 2018
If I1, I2 and I3 are your 2D images.....you can append them to write using:
I = cat(4,I1,I2,I3) ;

Categories

Find more on DICOM Format in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!