|
first of all sorry for my English and my long post while i'm confused and i can't even express myself well enough
it's about a week i'm searching for a way to split video into frames so i can use these frames as input of my program
i want to write the algorithm which proposed in VSUMM article
in this article first the video should split into frames and then there should be Color feature extraction(color histogram, HSV, 16 bins) and so on but i dono how, i don''t even know the first step:_(
with the help of videoReader i split video to frames:
vidObj = VideoReader('9.avi');
laFrames = read(vidObj,[1 inf])
but there is some problems:
1st: it has this error :"Warning: Unable to determine the number of frames in this file. "
i used different type of videos but the problem still remains
2nd.does anyone has this VSUMM code or is there any similar code so i could learn sth from it?
and at last i've got this laFrames but what is it?
is it all frames of the video? and is it an array? how can i manipulate it for the rest of my coding?
thank you
|