How to stack data read and images and plot in 3D ?

6 次查看(过去 30 天)
Hi, I am using the following code for reading the images and extracting the data into cells.
imagefiles = dir('*.bmp');
nfiles = length(imagefiles); % Number of files
for ii=1:nfiles
currentfilename = imagefiles(ii).name;
currentimage = imread(currentfilename);
images{ii} = currentimage;
end
how can i stack the data one below the other from cells in images{ii} and view the result in 3D ?
I attached the .mat file for images{ii}.
Thanks

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-7-22
out=reshape(cell2mat(images),250,250,[]);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Identification 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by