converting cross sectional slides to vertical section in CT scan images
3 次查看(过去 30 天)
显示 更早的评论
I have 76 2D cross sectional slices of CT scan images. I want to generate a vertical section by those slices.
Can somebody please give me an idea or tip about how to do it?
a sample of CT slices:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161323/image.png)
a sample of what I'm looking for:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161325/image.png)
0 个评论
采纳的回答
Matt J
2014-4-20
Instead of having 76 separate image matrices, you should hold all the slices in an MxNxP array. If A is this array, then you can extract slices along whatever axis you want by indexing
A(:,:,i); %axial
A(:,i,:); %sagittal/coronal
A(i,:,:); %coronal/sagittal
You can also use griddedInterpolant() to interpolate oblique slices.
1 个评论
Matt J
2014-4-20
If the 76 images came from DICOM, you can import to a MATLAB 3D volume using one of several tools on the File Exchange, e.g.,
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!