#!/bin/csh
# gsdilate -- function-set dilation of a gray-level image

set argc = ($*)

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

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

