Any tips on how to do video classification on lengthy videos?
I am eyeballing this workflow:
https://www.mathworks.com/help/deeplearning/ug/classify-videos-using-deep-learning.html
But when I try to initialise an array to the size of my video (70 000 frames, 600 mb) the size of array is too large.
I have 256 gb ram at my disposal so I can do while resizing video to 224x224 before, but I'm wondering if there's less clumsy workflow for large videos?
vid = zeros(768,1024,3,78938)
unresponsive.
This example shows how to create a network for video classification by combining a pretrained image classification model and an LSTM network.