#!/bin/csh
# thresh -- threshold an image between $1 and $2

set argc = ($*)

if ( "$#argc" != "2" ) then
   echo "usage:  thresh  < RasFileIn >  RasFileOut  lower  upper"
   exit 
endif

morph -m d -k auto 1 1 -t $1 $2

