連番JPG画像から動画を作成した際にノイズのような点滅が発生しないようにするにはどうしたらよいですか?
조회 수: 3 (최근 30일)
이전 댓글 표시
現在のプログラムです
v = VideoWriter("sample");
open(v)
im_list= dir('*.jpg');
list_tbl=struct2table(im_list);
im_name=list_tbl.name;
for a=1:200
A = imread(im_name{a});
writeVideo(v,A);
end
close(v)
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 ビッグ データの処理에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!