필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
tgohsu
tgohsu 2017년 10월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
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