連番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!