4-D uint8 , what does it mean?
Show older comments
Hello,
I've uploaded a video to matlab with the following code and I got this on workspace:

I want to know more about the meaning of "4-D uint8", what does it mean? what are the 4 dimentions , what is uint8 ?
what is the dimentions of the variable "frames"? How can I extract one column from the 4-D table?
Thank you
video = VideoReader("measurment.mp4");
for(i = 1: video.NumberOfFrames)
frames(:,:,:,i) = read(video, i);
end
1 Comment
Walter Roberson
on 7 Dec 2020
size(frames)
Accepted Answer
More Answers (0)
Categories
Find more on Video Formats and Interfaces in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!