MATLAB Functions | Help Desk |
im2frame
Convert indexed image into movie frameF = im2frame(X,Map)
F = im2frame(X,Map)
converts the indexed image X
and associated colormap Map
into a movie frame F. You can use im2frame
to convert a sequence of images into a movie.
You can use im2frame
to convert a sequence of images into a movie.
M = moviein(n); M(:,1) = im2frame(X1,map); M(:,2) = im2frame(X2,map); ... M(:,n) = im2frame(Xn,map); movie(M)
capture
, frame2im
, movie
, moviein