How to creat 3D image by stacking multiple 2D image in Matlab?

81 vues (au cours des 30 derniers jours)
Shyam Yadav
Shyam Yadav le 20 Août 2020
Commenté : Shyam Yadav le 21 Sep 2020
I have 3, 2D Image file (RGB) with same dimensions. I want to creat a 3D image by stacking of these 2D image but I dont know which code I should use. I tried some codes suggested here but could not get any image. Please suggest me how to solve this. Your help would be appreciated.
  1 commentaire
Prabhan Purwar
Prabhan Purwar le 25 Août 2020
Could you please elaborate upon codes you have tried along with attachments.

Connectez-vous pour commenter.

Réponses (1)

Prabhan Purwar
Prabhan Purwar le 28 Août 2020
Hi,
Kindly make use of cat function to create a 3d image from 2d images as shown.
Only valid for Images that are already reconstructed by the CT Instrument.
In the case of 2D Images that are projection of volume along different angles will require filtered back-projection reconstruction (radon) process to build the 3D image.
image3d = cat(3, slice1, slice2, slice3, slice4);
In order to Visualize the created Image make use of implay(array3d) to view different slices at different Instances. Make use of the following code to visualize a volume in 3D.
Kindly go through following links for reference:
Thanks
  1 commentaire
Shyam Yadav
Shyam Yadav le 21 Sep 2020
Dear Prabhan, Thank you very much for your answer, but my question is, I have captured 2D images (Suppose 3, 2D images) which is not by CT Instrument. These 2D images also has information of z axis. Now I need to convert 2D image in 3D image which can show information of all three axis. Now I want to do mathematical operation between these 3D images so that I can go for stacking of images obtained after mathematical operation.
Can you help me to provide some references for this kind of problem? Any suggestion from your side will be highly appreciated.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Segmentation and Analysis dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by