Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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.

回答(1 个)

Cam Salzberger
Cam Salzberger 2017-10-23
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

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by