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

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

 採用された回答

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019 年 12 月 6 日
編集済み: JESUS DAVID ARIZA ROYETH 2019 年 12 月 6 日

0 投票

s=dir('*.avi');
files={s.name};
for k=1:numel(files)
v= VideoReader(files{k});
j=0;
while %condition
%yourcodehere
end
end

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by