| Contents | Index |
[X,Map] = frame2im(F)
[X,Map] = frame2im(F) returns the indexed image X and associated colormap Map from the single movie frame F. If the frame contains true-color data, the m-by-n-3 matrix Map is empty. The functions getframe and im2frame create a movie frame.
Create and capture an image using getframe and frame2im:
peaks %Make figure f = getframe; %Capture screen shot [im,map] = frame2im(f); %Return associated image data if isempty(map) %Truecolor system rgb = im; else %Indexed system rgb = ind2rgb(im,map); %Convert image data end

Explore how to use MATLAB to make advancements in engineering and science.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |