#!/bin/csh
# gsclose -- function-set closing of a gray-level image

set argc = ($*)

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

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

