Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How do I create a control loop to run images from a folder through code?

2 Ansichten (letzte 30 Tage)
tgohsu
tgohsu am 23 Okt. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have a folder that have these images, with these names:
I would like to run these images through this segment of code:
The segment that says A= imread('....') is where i'd like to to automatically feed the images from the previous pictures, rather than manually changing the file name each time I have to run an image.
I know I have to set up a control loop, but I don't know how to institute it.
Thanks in advance.

Antworten (1)

Cam Salzberger
Cam Salzberger am 23 Okt. 2017
Hello Tushar,
You can use dir to get information about the contents of a folder. Loop through each element of the resulting struct array for your loop size. Use the "isdir" field to ignore anything that isn't a file, and the "name" field to get the filename (and check the extension if you want). You can append it to the "folder" field to get an absolute path to the file, which you can feed to "imread".
-Cam

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by