stacking images for tomographic representation
Ältere Kommentare anzeigen
I have taken the projection of an object for multiple angles.I have taken iradon, and now i have the cross sectional slices(as row/column matrix). I want to stack every 10th slice along Z in a kinda 3D visualization(with gap between the slices), for showing the corresponding cross sectional slice of the object(like the image specified in the link -http://stackoverflow.com/questions/6283918/matlab-merge-submatrices). I have no idea where to start with. Kindly give some suggestions.
Antworten (1)
David Sanchez
am 11 Jun. 2013
[n_rows n_cols]=size(my_2D_image);
my_3D_image = zeros(n_rows,n_cols,Number_im/10); % initialize your 3D matrix
for k = 1:10:last_image
my_3D_image(:,:,(k+9)/10) = my_2D_image(k);
end
1 Kommentar
Kategorien
Mehr zu Image Transforms finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!