Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Reading images in matlab

1 Ansicht (letzte 30 Tage)
Balaji M. Sontakke
Balaji M. Sontakke am 13 Dez. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Am using a database which is gathered from 100 persons, 3 images per persons of each of 4 different activities like act,bag,norm and ice. I want to read those images from a folder but I don't understand how to read it, following is the format of those images
p1_left_act_1 to p1_left_act_3,
p1_left_bag_1 to p1_left_bag_3,
p1_left_norm_1 to p1_left_norm_3,
p1_left_ice_1 to p1_left_ice_3

Antworten (1)

KSSV
KSSV am 13 Dez. 2017
images = dir('.*jpg') ; % give your image extension
N = length(images) ; % total number of images
for I = 1:N % loop for each image
thisimage = images(I).name ;
% do what you want
end

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by