FB_apply_2D

PURPOSE ^

Applies each of the filters in the filterbank FB to the image I.

SYNOPSIS ^

function IF = FB_apply_2D( I, FB, shape, show )

DESCRIPTION ^

 Applies each of the filters in the filterbank FB to the image I.

 To apply to a stack of images:
   IFS = feval_arrays( images, @FB_apply_2D, FB, 'valid' );

 INPUTS
   I       - 2D input array
   FB      - MxNxK set of K filters
   shape   - [optional] option for conv2 'same', 'valid', ['full']
   show    - [optional] figure to use for display (no display if == 0)

 OUTPUTS
   IF      - 3D set of filtered images

 EXAMPLE
   load trees; X=imresize(X,.5);
   load FB_DoG.mat;
   IF = FB_apply_2D( X, FB, 'same', 1 );

 DATESTAMP
   29-Sep-2005  2:00pm

CROSS-REFERENCE INFORMATION ^

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