How to open multiple folders for processing?
27 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to process images in the folder, and each folder contains many images.. how can I process images which are in multiple folder, which has to be open one at a time, process folder of images and continue to open another folder to process set of images available in it...?like this it should open folders and continue to process until all the folder specified are done...
0 Kommentare
Antworten (3)
Paul Shoemaker
am 26 Mär. 2018
Hema,
Since you don't provide more concrete details about your specific circumstances (code, examples, purpose, etc), I will give a fairly broad answer that hopefully points you in the right direction.
Feel free to respond back with more details if the below ideas miss the mark.
Consider using the Matlab "dir" function to scan for files, which you can have run recursively in newer versions of Matlab. Another newer feature you could use is the "datastore" approach. Type help for either dir or datastore and you should get some good info to help with what you need.
Paul Shoemaker
4 Kommentare
Image Analyst
am 27 Mär. 2018
See my attached demo to go into folders and subfolders getting filenames.
3 Kommentare
Navyasree K.S.
am 12 Dez. 2020
i need to read the images,they are in differents folders in a same file.the imaages are .jpg.please help me
1 Kommentar
Image Analyst
am 12 Dez. 2020
You can use imageDatastore(), or use dir('**/*.jpg');
See the FAQ for code samples.
Don't use JPG images for image analysis if you can possibly avoid it. They have bad compression artifacts. Use PNG.
Siehe auch
Kategorien
Mehr zu Image Processing and Computer Vision finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!