Stacking multiple 2D images to form a single volumetric 3D image.
10 views (last 30 days)
Show older comments
Amira Ramli
on 14 Jul 2020
Commented: Amira Ramli
on 20 Jul 2020
Hello everyone.
I have a 2D image in 244x244 grid of .xlsx file. I would like to stack this image and visualize a single volumetric 3D image. Does anyone know how to do that.
2 Comments
Accepted Answer
Image Analyst
on 14 Jul 2020
If you have gray level slice images image1, image2, image3, image4, image5, etc. then you can use cat(3,):
volumetricImage3D = cat(3, image1, image2, image3, image4, image5);
3 Comments
Image Analyst
on 20 Jul 2020
Yes, MATLAB is not the best for that. They do have a Volume Visualizer app on the Apps tab of the tool ribbon but if you want a really powerful program to do it you'll have to use Avizo.
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!