how do i read a folder database into matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
basma alshaibah
el 5 de Abr. de 2019
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)');
0 comentarios
Respuesta aceptada
Más respuestas (1)
TED jenson
el 5 de Abr. de 2019
hey have you checked your problem on youtube?
refer the above link. hope it clears all your doubt.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!