I am working on action recognition topic using Matlab. Each video contains specific number of frames, and each frame contains different coordinates of X,y,z.
After extracting the features, I got an cell array which contains 3D array for each video. Lets be clear with numbers: I have 40 videos, which give me 40x1 cell array. Each cell contains 128x3xN where N is number of frames. have corresponding labels array 40x1 double array.
Example of the first 10 videos:
<128x3x54 double>
<128x3x43 double>
<128x3x43 double>
<128x3x55 double>
<128x3x31 double>
<128x3x45 double>
<128x3x45 double>
<128x3x33 double>
<128x3x38 double>
<128x3x38 double>
I want to classify these videos using libSVM, how I can change the dimensions to 2D array and preserve the meaning of features ? And having similar aray dimensions for each video ?