フィルターのクリア

CT spine saggital image

2 ビュー (過去 30 日間)
researcher
researcher 2013 年 8 月 22 日
Hi all,
i have CT spine images and i need to work on both saggital and axial planes , but when i used dicominfo followed by dicomread commands i got the actual ct image which is in axial plane only. is there anyway to extract the images in saggital plane as i need to apply segmentation on it?
waiting any reply
thanks in advance

回答 (1 件)

Amith Kamath
Amith Kamath 2013 年 8 月 22 日
Assuming your data has at least 3 dimensions, you only need to index it correctly so as to get a 2D matrix for displaying. For the want of a dataset to demonstrate this, I have used mri. Try running this:
load mri
imshow(D(:,:,1,1)) %transverse plane, first slice.
imshow(imrotate(squeeze(D(:,55,1,:)),90),[]) %sagittal plane, 55th slice.
This is done using SQUEEZE which removes all the singleton dimensions, and IMROTATE which rotates the image appropriately.

カテゴリ

Help Center および File ExchangeDICOM Format についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by