連番JPG画像から動画を作成した際にノイズのような点滅が発生しないようにするにはどうしたらよいですか?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
現在のプログラムです
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 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu ビッグ データの処理 finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!