montage2

PURPOSE ^

[3D] Used to display a stack of T images.

SYNOPSIS ^

function varargout = montage2( IS, showlines, extrainfo, clim, mm, nn, labels )

DESCRIPTION ^

 [3D] Used to display a stack of T images. 

 Improved version of montage, with more control over display.  

 NOTE: Can convert between MxNxT and MxNx3xT image stack via:
   I = repmat( I, [1,1,1,3] ); I = permute(I, [1,2,4,3] );

 INPUTS
   IS          - MxNxT or MxNx1xT or MxNx3xT array (of bw or color images)
   showlines   - [optional] whether to show lines separating the various frames
   extrainfo   - [optional] if 1 then a colorbar is shown as well as pixval bar
   clim        - [optional] clim = [clow chigh] optional scaling of data
   mm          - [optional] #images/row (if [] then calculated)
   nn          - [optional] #images/col (if [] then calculated)
   labels      - [optional] cell array of strings specifying labels for each image

 OUTPUTS
   h           - image handle
   mm          - #images/row 
   nn          - #images/col

 EXAMPLE
   load( 'images.mat' );
   montage2( images );

 DATESTAMP
   29-Sep-2005  2:00pm

 See also MONTAGE, MAKEMOVIE

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Sun 02-Oct-2005 19:35:28 by m2html © 2003