#!/bin/sh
base_name=$1
threshold=$2
echo "basename: ${base_name}"
echo "threshold: $threshold"
i=0
for f in ${base_name}*.tif
do
bf=${base_name}$(printf "%03d" $i)
echo ./corners $f $bf $threshold 2
./corners $f $bf $threshold 2
i=$((i+1))
done
Wednesday, October 31, 2007
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment