How to show all jpg images saved in MATLAB folder?

5 vues (au cours des 30 derniers jours)
Explorer
Explorer le 1 Fév 2016
Modifié(e) : DGM le 24 Fév 2023
storedStructure = dir('*.jpg')
How should I proceed?
  2 commentaires
Stephen23
Stephen23 le 1 Fév 2016
Modifié(e) : Stephen23 le 1 Fév 2016
What do you mean "show all jpg images" ? If you have a thousand images, displaying them all at once could be a bit bewildering.
Explorer
Explorer le 1 Fév 2016
Yes, it may be. But still I want to know how can I do this?

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 1 Fév 2016
Modifié(e) : Stephen23 le 1 Fév 2016
This displays all of the jpg images in the current directory:
S = dir('*.jpg');
for k = 1:numel(S)
figure();
image(imread(S(k).name))
axis('image');
end
Note: this code will not work with indexed image formats.

Plus de réponses (4)

Bjorn Gustavsson
Bjorn Gustavsson le 1 Fév 2016
Perhaps one of the submissions creating thumbnails (into tables guis or the like) found on the file exchange does what you want: Thumbnaily submissions

DGM
DGM le 14 Fév 2023
Modifié(e) : DGM le 24 Fév 2023
(Almost) straight from the docs for montage:
% Create a montage from a series of JPG images in a directory
targetpath = fullfile(matlabroot,'toolbox','images','imdata','*.jpg');
imds = imageDatastore(targetpath);
montage(imds);
Alternatively, without using imageDatastore():
% Create a montage from a series of JPG images in a directory
targetpath = fullfile(matlabroot,'toolbox','images','imdata','*.jpg');
S = dir(targetpath);
allpaths = fullfile({S.folder},{S.name});
montage(allpaths);
In either case, if you want to actually save the output to a new image file, don't use montage(). Use imtile() instead and save the result using imwrite(). Most of the syntax overlaps between the two, so it should be fairly straightforward.

Walter Roberson
Walter Roberson le 1 Fév 2016
ls *.jpg
if you just want to list them to the screen.
  1 commentaire
Explorer
Explorer le 1 Fév 2016
No, I do not want their names. I want to show images.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 1 Fév 2016
This is answered in the second chunk of code in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F

Catégories

En savoir plus sur Introduction to Installation and Licensing 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!

Translated by