필터 지우기
필터 지우기

Convert, 3D matrix to Video

조회 수: 14 (최근 30일)
Khawaja Asim
Khawaja Asim 2014년 4월 19일
답변: Melika Bahmanabasdi 2020년 5월 8일
I want to convert a 3D matrix, say "100x150x75" to a video in matlab. How can I do that? I have converted a 3D matrix to a video, but output was very distorted video.

답변 (1개)

Melika Bahmanabasdi
Melika Bahmanabasdi 2020년 5월 8일
VidObj = VideoWriter('movie.avi', 'Uncompressed AVI'); %set your file name and video compression
VidObj.FrameRate = 30; %set your frame rate
open(VidObj);
for f = 1:size(T, 3) %T is your "100x150x75" matrix
writeVideo(VidObj,mat2gray(T(:,:,f)));
end
close(VidObj);

태그

Community Treasure Hunt

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

Start Hunting!

Translated by