explain 4-D unit8
古いコメントを表示
when i read the video ex- vid = read(obj); then in vid we get the 4-D uint8..then 4d means(h,w,b,f) is or not..
4 件のコメント
Image Analyst
2015 年 6 月 6 日
I do not know what "then 4d means(h,w,b,f) is or not.." means. Please explain. With read() you can read a frame from a video, or the whole video, which would be a 4D array if you had a color video.
asmi
2015 年 6 月 8 日
Walter Roberson
2015 年 6 月 8 日
Each frame of a video is represented by a 3D array -- height, width, and color channel (R, G, B). You can store multiple frames in the same array by using the 4th dimension, making the array height, width, channel, frames
IM(13,5,2,14)
is frame 14, channel 2 (Green), pixel row 13, pixel column 5.
asmi
2015 年 6 月 8 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Video Formats and Interfaces についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!