Effacer les filtres
Effacer les filtres

get path to all files in a folder of images

45 vues (au cours des 30 derniers jours)
RuiQi
RuiQi le 17 Jan 2017
how do i get the path to my image in a folder ?
% Directory
directory = 'C:\Datasets\nyu\train\';
% Filenames
image_rgb_filenames = dir(strcat(directory,'image_02\','*.jpg'));
image_depth_filenames = dir(strcat(directory,'depth\','*.png'));
Because image_rgb_filenames(1).name returns me the name of the file, not the path to it with the name of the file.

Réponse acceptée

Walter Roberson
Walter Roberson le 17 Jan 2017
% Directory
directory = 'C:\Datasets\nyu\train\';
img_dir = fullfile(directory, 'image_02');
depth_dir = fullfile(directory, 'depth');
image_rgb_info = dir( fullfile(img_dir, '*.jpg'));
image_rgb_filenames = fullfile(img_dir, {image_rgb_info.name} );
image_depth_info = dir( fullfile(depth_dir, '*.png'));
image_depth_filenames = fullfile(depth_dir, {image_depth_info.name} );

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by