MATLAB: How to convert several 2d images into a single 3d image in matlab code

2-d images to 3-d imagesImage Processing Toolbox

i am studying masters degree.. i need a matlab code for converting 2D images from different angle to a single 3D image..can anyone help me as soon as possible.. thanks in advance

Best Answer

To concatenate four 2D images of the same size along the 3rd dimension, use:
I = cat(3, I1, I2, I2, I4);
Related Question