Azzera filtri
Azzera filtri

get path to all files in a folder of images

49 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Walter Roberson
Walter Roberson il 17 Gen 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} );

Più risposte (0)

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by