How to stack data read and images and plot in 3D ?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Karthik
le 22 Juil 2015
Réponse apportée : Azzi Abdelmalek
le 22 Juil 2015
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
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!