#!/bin/csh
# gferode -- function-function erosion of a gray-level image

set argc = ($*)

if ( "$#argc" < "1" ) then
   echo "usage:  gferode < RasFileIn  > RasFileOut  SE_spec"
   exit 
endif

morph -m e -i g -s g -o f -k $*

