#!/bin/csh
# bdilate -- binary dilation of a binary image
# a gray level image can be pre-thresholded using the -t option

set argc = ($*)

if ( "$#argc" < "1" ) then
   echo "usage:  bdilate  < RasFileIn  > RasFileOut  SE_spec [-t lll [uuu]]"
   exit 
endif

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

