matlab dicom格式图像转为tif格式的读取

Matlab  

当将多帧dicom图像经MeVislab转为tif格式后的图像读取问题:

t=Tiff('CTA.tif','r');
subimage_one=t.read();  %subimage_one为4-Dint16  为x,y,z和时间的4D图像
s1=subimage_one(:,:);  %s1为512*77520 int16
s2=subimage_one(:,:,:); %s2为512*255*304 int16
s4=subimage_one(:,:,304);

imshow(s4,'Displayrange',[]);  %显示第304张图片


相关链接:https://cn.mathworks.com/matlabcentral/answers/16964-libtiff-matlab-how-to-change-temporal-position

你可能感兴趣的:(matlab,dicom,tiff)