How to Insert New Image in Video as first frame?

3 vues (au cours des 30 derniers jours)
voxey
voxey le 20 Juin 2019
How to Insert New Image in Video as first frame?
  1 commentaire
rasika priyadarshana
rasika priyadarshana le 4 Avr 2020
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);

Connectez-vous pour commenter.

Réponses (1)

Vismay Raj
Vismay Raj le 20 Juin 2019
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 commentaires
voxey
voxey le 24 Juin 2019
Vismay Raj , Its show Error. its not realated to my question.
rasika priyadarshana
rasika priyadarshana le 4 Avr 2020
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);

Connectez-vous pour commenter.

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by