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

set argc = ($*)

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

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

