filmStrip

PURPOSE ^

Used to display R stacks of T images as a "filmstrip".

SYNOPSIS ^

function F = filmStrip( I, overlap, delta, border )

DESCRIPTION ^

 Used to display R stacks of T images as a "filmstrip".

 See examples below to see what is meant by "filmstrip".

 USAGE
  F = filmStrip( I, overlap, delta, border )

 INPUTS
  I          - MxNxTxR or MxNx1xTxR or MxNx3xTxR array
               (of bw or color images). R can equal 1.
  overlap    - amount of overlap between successive frames
  delta      - amount to shift each successive frame upward
  border     - width of black border around each frame

 OUTPUTS
  F       - filmstrip

 EXAMPLE - one filmstrip
  load images;
  F1 = filmStrip( video(:,:,1:15), 10, 2, 5 );   figure(1); im(F1); % one
  F2 = filmStrip( videos(:,:,:,1:10), 5, 2, 3 ); figure(2); im(F2); % many

 See also MONTAGE2

 Piotr's Image&Video Toolbox      Version 2.0
 Copyright 2008 Piotr Dollar.  [pdollar-at-caltech.edu]
 Please email me if you find bugs, or have suggestions or questions!
 Licensed under the Lesser GPL [see external/lgpl.txt]

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated by m2html © 2003