Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Display video-data of a three-dimensional M-by-N-by-T array

조회 수: 1 (최근 30일)
Anita Götz
Anita Götz 2020년 7월 10일
마감: MATLAB Answer Bot 2021년 8월 20일
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?

답변 (1개)

Mehmed Saad
Mehmed Saad 2020년 7월 10일
You can use implay or vision.VideoPlayer
A = rand(360,640,676,'single');
implay(A,60)

이 질문은 마감되었습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by