Link .CSV file to image file names

2 次查看(过去 30 天)
I am new to matlab
I have 2 datasets- csv file and images The name of image is stored in a csv file along with its class.
Is there any way to map the image files to classes in csv such that all the files of one category lie is one sub folder

回答(1 个)

Duncan Lilley
Duncan Lilley 2017-12-12
Hello,
First you will want to import the data from your CSV file. In MATLAB, you can right-click on the file in the Current Folder browser and select "Import Data...". Then, once you have made sure that the data will be imported correctly, you can choose the drop-down menu under "Import Selection" and generate a script or function to import this data in the future. More information about importing data in this way can be found on the documentation page for "uiimport".
Once the data is imported, you can iterate through the resulting data structure using a for-loop. Then, for each entry, you can move the corresponding image file to a subfolder determined by the category of the image. Files can be moved using the "movefile" function.

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by