how can i use imdisp to display images from the folder?
Mostra commenti meno recenti
I have code which saves matched images into a folder... how can retrieve images from the folder and display multiple or all images of folder using "imdisp" ...
[MATLAB 7]
Risposte (1)
Walter Roberson
il 29 Giu 2017
Modificato: Walter Roberson
il 29 Giu 2017
0 voti
Be careful if your images are named something img_9.bmp img_10.bmp and so on instead of img_09.bmp img_10.bmp (with fixed number of digits). If you use variable number of digits you will probably want to use https://www.mathworks.com/examples/matlab/community/19425-natsortfiles-examples
4 Commenti
Walter Roberson
il 1 Lug 2017
dinfo = dir('*.png');
numfile = length(dinfo);
image_stack = [];
for K = 1 : numfile
thisfile = dinfo(K).name;
thisimage = imread(thisfile);
image_stack(1:size(thisimage,1), 1:size(thisimage,2), :, K) = thisimage;
end
imdisp(image_stack);
hp
il 3 Lug 2017
Modificato: Walter Roberson
il 3 Lug 2017
hp
il 3 Lug 2017
Modificato: Walter Roberson
il 3 Lug 2017
Guillaume
il 3 Lug 2017
Don't use strcat use fullfile instead.
Don't use length use numel instead.
Your error is because you haven't specified the full path of the file in your imread call.
thisimage = imread(fullfile(dir_in, thisfile));
Categorie
Scopri di più su Point Grey Hardware in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!