How to Insert New Image in Video as first frame?

6 ビュー (過去 30 日間)
voxey
voxey 2019 年 6 月 20 日
How to Insert New Image in Video as first frame?
  1 件のコメント
rasika priyadarshana
rasika priyadarshana 2020 年 4 月 4 日
function out=in_icon(A,im)
mov=Vread(A);
G=imread(im);
f=size(mov,2);
[h1 w1 c1]=size(G);
for k=1:1
mov(k).cdata(1:h1, 1:w1,:)=G;
end
out=mov;
implay(mov);

サインインしてコメントする。

回答 (1 件)

Vismay Raj
Vismay Raj 2019 年 6 月 20 日
Read the video using
videoObj = mmreader(FileName);
video = videoObj.read();
% the nth frame is accessed by video(:,:,:,n)
Read the image and append it
img = imread(filename);
video = cat(4,img,video);
  2 件のコメント
voxey
voxey 2019 年 6 月 24 日
Vismay Raj , Its show Error. its not realated to my question.
rasika priyadarshana
rasika priyadarshana 2020 年 4 月 4 日
function out=in_icon(A,im)
mov=Vread(A);
G=imread(im);
f=size(mov,2);
[h1 w1 c1]=size(G);
for k=1:1
mov(k).cdata(1:h1, 1:w1,:)=G;
end
out=mov;
implay(mov);

サインインしてコメントする。

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by