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 30-Apr-2006 2:00pm