how do i read a folder database into matlab

조회 수: 2 (최근 30일)
basma alshaibah
basma alshaibah 2019년 4월 5일
편집: Rik 2019년 4월 9일
i have a database as a folder and in that folder there are sub folders each with a number of photos of a person walking photographed from different angles, to be used for gait recognition.
how do i read that folder into matlab?
im new a matlab and i have this code to read an image but i want it to be used for reading a folder, is there anyway to do that ?
[fname, path]=uigetfile('.png','Open an Image as input for training');
fname=strcat(path, fname);
im=imread(fname);
im=im2bw(im);
imshow(im);
title('Input Image');
c=input('Enter the Class(Number from 1-12)');

채택된 답변

Rik
Rik 2019년 4월 5일
Use uigetdir to ask the user for a folder, then use dir to get the list of files inside that folder, then use a for loop to load the images in a loop.
  댓글 수: 2
basma alshaibah
basma alshaibah 2019년 4월 5일
편집: Rik 2019년 4월 9일
i used uigetdir and it worked but dir didn't. am i using it correctly?
selpath = uigetdir('C:\Users\Basma\Desktop','open a file for input')
dir selpath
and can you please show me how to iterate over the images in each subfolder?
because i tried a nested for loop but it didn't work
files = uigetdir('C:\Users\Basma\Desktop','open a file for input')
for i = 1 : 1: numel(files)
for j = 1 : 1 : numel(files(i))
x = imread(i,j);
end
end
thank you in advance
Rik
Rik 2019년 4월 6일
Read the documentation for the two functions. Matlab documentation is very good and contains several examples.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

TED jenson
TED jenson 2019년 4월 5일

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by