Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Display video-data of a three-dimensional M-by-N-by-T array
1 回表示 (過去 30 日間)
古いコメントを表示
I created a simulink model with colour-space-conversion of a video file.
At the end i used the "Video to Workspace"-Block. So after the simulation stopped im getting a three-dimensional M-by-N-by-T array (in my example the Value is "360x640x676 single") in my Workspace.
How can play this video result?
0 件のコメント
回答 (1 件)
Mehmed Saad
2020 年 7 月 10 日
You can use implay or vision.VideoPlayer
A = rand(360,640,676,'single');
implay(A,60)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!