How to read multiple video from a folder....?

11 vues (au cours des 30 derniers jours)
saurabh singh
saurabh singh le 6 Déc 2019
Modifié(e) : saurabh singh le 6 Déc 2019
I am trying to compute intrest point from a video by converting to frames.....I have successfully completed the same for 1 video.....i want to do same for entire dataset but i am not able to do so...Help !!
CODE-
v= VideoReader('1.avi');
j=0;
while %condition
----
---
end

Réponse acceptée

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH le 6 Déc 2019
Modifié(e) : JESUS DAVID ARIZA ROYETH le 6 Déc 2019
s=dir('*.avi');
files={s.name};
for k=1:numel(files)
v= VideoReader(files{k});
j=0;
while %condition
%yourcodehere
end
end

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by