How to access image name in imageDatastore?

19 visualizaciones (últimos 30 días)
Awais Khan
Awais Khan el 7 de Dic. de 2019
Comentada: Awais Khan el 7 de Dic. de 2019
Hi everyone, Senerio of my problem is that, for example one folder contain one subfolder and in this subfolder images in jpg,bmp etc formate exist. and i am using "imageDatastore", is it possible that i can access image name e.g. 'abc.jpg', by using "imageDatastore", without complete path string like(folder/subfolder/abc.jpg). i only need 'abc' which is name image.

Respuesta aceptada

Image Analyst
Image Analyst el 7 de Dic. de 2019
Use fileparts():
imds = imageDatastore('*.png')
fullFileNames = vertcat(imds.Files)
for k = 1 : length(fullFileNames)
[folder, baseFileNameNoExt, ext] = fileparts(fullFileNames{k});
baseFileNameWithExt = [ baseFileNameNoExt, ext];
fprintf('Base file name #%d = %s\n', k, baseFileNameWithExt);
end

Más respuestas (0)

Categorías

Más información sobre Import, Export, and Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by