Skip to Main Content Skip to Search
Product Documentation

getframe - Capture movie frame

Syntax

getframe
F = getframe
F = getframe(h)
F = getframe(h,rect)

Description

getframe returns a movie frame. The frame is a snapshot (pixmap) of the current axes or figure.

F = getframe gets a frame from the current axes.

F = getframe(h) gets a frame from the figure or axes identified by handle h.

F = getframe(h,rect) specifies a rectangular area from which to copy the pixmap. rect is relative to the lower left corner of the figure or axes h, in pixel units. rect is a four-element vector in the form [left bottom width height], where width and height define the dimensions of the rectangle.

getframe returns a movie frame, which is a structure having two fields:

To capture an image, use this approach:

F = getframe(gcf);
image(F.cdata)
colormap(F.colormap)

Tips

getframe is usually used in a for loop to assemble an array of movie frames for playback using movie. For example,

for j = 1:n 
   plotting commands
   F(j) = getframe;
end
movie(F)

If you are capturing frames of a plot that takes a long time to generate or are repeatedly calling getframe in a loop, make sure that your computer's screen saver does not activate and that your monitor does not turn off for the duration of the capture; otherwise one or more of the captured frames can contain graphics from your screen saver or nothing at all.

Capture Regions

F = getframe returns the contents of the current axes, exclusive of the axis labels, title, or tick labels.

F = getframe(gcf) captures the entire interior of the current figure window.

To capture the figure window menu, use F = getframe(h,rect) with a rectangle sized to include the menu.

Resolution of Captured Frames

The resolution of the framed image depends on the size of the axes in pixels when getframe is called. As the getframe command takes a snapshot of the screen, if the axes is small in size (e.g., because you have restricted the view to a window within the axes), getframe captures fewer screen pixels, and the captured image might have poor resolution if enlarged for display.

Capturing UIControls

To capture uicontrols along with the axes and any annotations displayed on the plot, specify the figure handle:

F = getframe(figure_handle);

To exclude uicontrols outside of the current axes, do not specify the figure handle:

F = getframe;

Limitations with Renderer on Windows Systems

Setting the figure Renderer property to zbuffer or painters works around limitations of using getframe with the OpenGL renderer on some Windows systems.

Examples

Make the peaks function vibrate.

Z = peaks;
figure('Renderer','zbuffer');
surf(Z);
axis tight;
set(gca,'NextPlot','replaceChildren');
for j = 1:20
    surf(sin(2*pi*j/20)*Z,Z)
    F(j) = getframe;
end
movie(F,20) % Play the movie twenty times

The fifth frame of the sequence looks like this.

See Also

axis | frame2im | gcf | im2frame | image | movie

  


» Learn more
» Download free kit
» Get trial software

 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS