連番JPG画像から動​画を作成した際にノイ​ズのような点滅が発生​しないようにするには​どうしたらよいですか​?

3 ビュー (過去 30 日間)
Tsuduri
Tsuduri 2024 年 4 月 10 日
現在のプログラムです
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 件)

カテゴリ

Help Center および File Exchangeビッグ データの処理 についてさらに検索

タグ

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!