I would have thought this is trivial, but I\'m having some trouble with it.
I want to read a video file into memory and store it in an array. I want the array to be o
But is there actually a way of creating Mat arrays? I really don't see other options in my case but trying to access an item in the array considers the array as a single Mat and thinks I'm trying to access its data.
Edit: Found a workaround using a pointer:
Mat* array = new Mat[arraySize];